1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| /* eslint-disable */
| /**柯礼钦
| * 4/2/2020, 11:22:51 AM
| * doc comment for the file goes here
| */
|
| /** 头部组件 */
|
| import React from 'react';
| import { Layout } from 'antd';
| const { Header } = Layout;
| import './index.scss';
|
|
| export default function MenuView({ }) {
|
| return (
| <Header style={{ background: '#fff', padding: 0 }} />
| );
| }
|
|