mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
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:
14
web/src/pages/user-setting/index.tsx
Normal file
14
web/src/pages/user-setting/index.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user