2023-05-25 07:03:57 +00:00
|
|
|
import UserIcon from "@mui/icons-material/People";
|
2023-02-13 12:41:30 +00:00
|
|
|
import UserList from "./UserList";
|
|
|
|
|
import UserEdit from "./UserEdit";
|
|
|
|
|
import UserCreate from "./UserCreate";
|
|
|
|
|
|
|
|
|
|
// eslint-disable-next-line import/no-anonymous-default-export
|
|
|
|
|
export default {
|
|
|
|
|
list: UserList,
|
|
|
|
|
create: UserCreate,
|
|
|
|
|
edit: UserEdit,
|
|
|
|
|
icon: UserIcon,
|
|
|
|
|
};
|