index.js 255 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5
import React from 'react';
import './header.scss'
import logo from './logo.png'


zhanghaozhe committed
6
const Header = React.memo(() => {
zhanghaozhe committed
7
    return (
xuzhenghua committed
8
        <div className="common-header">
zhanghaozhe committed
9 10 11
            <img src={logo} alt=""/>
        </div>
    );
zhanghaozhe committed
12
});
zhanghaozhe committed
13 14

export default Header;