Add TopMenu component and page specific content
This commit is contained in:
15
src/components/TopMenu.js
Normal file
15
src/components/TopMenu.js
Normal file
@ -0,0 +1,15 @@
|
||||
import React, { Component } from 'react';
|
||||
|
||||
import './css/TopMenu.css';
|
||||
|
||||
class TopMenu extends Component {
|
||||
render() {
|
||||
return (
|
||||
<div id="topMenu">
|
||||
{this.props.children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default TopMenu;
|
Reference in New Issue
Block a user