ragflow/web/src/pages/user-setting/index.tsx
balibabu 63e498ac79
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
2024-03-07 19:13:16 +08:00

14 lines
242 B
TypeScript

import { Flex } from 'antd';
import { Outlet } from 'umi';
import SideBar from './sidebar';
const UserSetting = () => {
return (
<Flex>
<SideBar></SideBar>
<Outlet></Outlet>
</Flex>
);
};
export default UserSetting;