初始化
This commit is contained in:
22
src/page/Dashboard/SystemSettings/index.jsx
Normal file
22
src/page/Dashboard/SystemSettings/index.jsx
Normal file
@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
import {Col, Flex, Menu, Row, Switch, Typography} from 'antd';
|
||||
import Sider from "antd/es/layout/Sider";
|
||||
import DashboardMenuItems from "../../../menu/DashboardMenuItems";
|
||||
import SettingsMenu from "../../../menu/SettingsMenu";
|
||||
import {Header} from "antd/es/layout/layout";
|
||||
|
||||
const {Title} = Typography;
|
||||
|
||||
const Index = () => {
|
||||
return (
|
||||
<div>
|
||||
<div>
|
||||
<Menu
|
||||
mode={'horizontal'}
|
||||
items={SettingsMenu}/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Index;
|
||||
Reference in New Issue
Block a user