balibabu
feat: add UserSetting and set height of MoreIcon to 24px and replace logo (#111)
657bc8a
raw
history blame
242 Bytes
import { Flex } from 'antd';
import { Outlet } from 'umi';
import SideBar from './sidebar';
const UserSetting = () => {
return (
<Flex>
<SideBar></SideBar>
<Outlet></Outlet>
</Flex>
);
};
export default UserSetting;