mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-19 05:17:41 +03:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
import SupervisedUserCircleIcon from '@material-ui/icons/Group'
|
|
import UserList from './UserList'
|
|
import UserEdit from './UserEdit'
|
|
import UserCreate from './UserCreate'
|
|
|
|
export default {
|
|
list: UserList,
|
|
edit: UserEdit,
|
|
create: UserCreate,
|
|
icon: SupervisedUserCircleIcon
|
|
}
|