2023-06-28 12:55:24 +00:00
|
|
|
"use client";
|
|
|
|
|
|
2023-03-15 12:17:43 +00:00
|
|
|
/* eslint-disable import/no-named-as-default */
|
|
|
|
|
/* eslint-disable import/no-anonymous-default-export */
|
2023-05-25 07:03:57 +00:00
|
|
|
import AccountIcon from "@mui/icons-material/AccountTree";
|
2023-02-13 12:41:30 +00:00
|
|
|
import AccountList from "./AccountList";
|
|
|
|
|
import AccountEdit from "./AccountEdit";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
list: AccountList,
|
|
|
|
|
edit: AccountEdit,
|
|
|
|
|
icon: AccountIcon,
|
|
|
|
|
};
|