forked from huge/frontEnd/hugeOA

Mr Ke
2020-04-06 c2866301131db5f8433ff80a15a7404ac1b5522e
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' }} />
    );
}