Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame
383 Bytes
import { Flex } from 'antd';
import { Outlet } from 'umi';
import SideBar from './sidebar';
import styles from './index.less';
const UserSetting = () => {
return (
<Flex className={styles.settingWrapper}>
<SideBar></SideBar>
<Flex flex={1} className={styles.outletWrapper}>
<Outlet></Outlet>
</Flex>
</Flex>
);
};
export default UserSetting;