feat: add UserSetting and set height of MoreIcon to 24px and replace logo (#111)

* feat: replace logo

* feat: set height of MoreIcon to 24px

* feat: add UserSetting
This commit is contained in:
balibabu
2024-03-07 19:13:16 +08:00
committed by GitHub
parent 436c52bbc5
commit 63e498ac79
18 changed files with 205 additions and 20 deletions

View File

@ -0,0 +1,14 @@
import { Flex } from 'antd';
import { Outlet } from 'umi';
import SideBar from './sidebar';
const UserSetting = () => {
return (
<Flex>
<SideBar></SideBar>
<Outlet></Outlet>
</Flex>
);
};
export default UserSetting;