quintodrome/ui/src/user/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
184 B
JavaScript
Raw Normal View History

2020-01-19 16:40:18 -09:00
import UserList from './UserList'
2020-01-19 17:39:37 -09:00
import UserEdit from './UserEdit'
import UserCreate from './UserCreate'
2020-01-19 16:40:18 -09:00
export default {
list: UserList,
2020-01-19 17:39:37 -09:00
edit: UserEdit,
create: UserCreate,
2020-01-19 16:40:18 -09:00
}