mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
import UserList from './UserList'
|
|
import UserEdit from './UserEdit'
|
|
import UserCreate from './UserCreate'
|
|
|
|
export default {
|
|
list: UserList,
|
|
edit: UserEdit,
|
|
create: UserCreate,
|
|
}
|