blob: 1428a1c5333f166d96e09f5f4fb6f4388eb6b3c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import React from 'react';
import NavTop from 'component/nav-top/index.jsx';
// import SideNav from 'component/side-nav/index.jsx';
// import './index.scss';
import './theme.css';
class Layout extends React.Component {
constructor(props){
super(props);
}
render(){
return (
<div id="wrapper">
<NavTop/>
{this.props.children}
</div>
);
}
}export default Layout;
|