File size: 488 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { New } from './new.js'
import { Edit } from './edit.js'
import { Show } from './show.js'
import { List } from './list.js'
import { BulkDelete } from './bulk-delete.js'

export * from './new.js'
export * from './action.props.js'
export * from './edit.js'
export * from './show.js'
export * from './list.js'
export * from './bulk-delete.js'
export * from './utils/index.js'

export const actions = {
  new: New,
  edit: Edit,
  show: Show,
  list: List,
  bulkDelete: BulkDelete,
}