forked from huge/frontEnd/hugeOA

liuwh
2020-04-06 23ef77aa1fa2d9ce3c10205f9cb77864a18e9ec4
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, boxShadow: 'inset 0 -1px 0 0 #E5E5E5' }} />
    );
}