balibabu
feat: submit new password to backend and submit user information and add Form to UserSettingProfile (#114)
cd46bb2
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;