mirror of
https://github.com/Team4388/scouting-2021.git
synced 2026-06-09 00:38:01 -06:00
create-react-app and couchdb
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import React from 'react'
|
||||
|
||||
import DrawerButton from '../Drawer/DrawerButton';
|
||||
import PagesList from '../PagesList';
|
||||
import './Toolbar.css';
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
const Toolbar = props => {
|
||||
return (
|
||||
<header className="toolbar">
|
||||
<nav className="toolbar_navigation">
|
||||
<DrawerButton click={props.drawerClickHandler} />
|
||||
<div className = "toolbar_logo"><Link to="/">Ridgebotics Scouting</Link></div>
|
||||
<div className = "toolbar_spacer" />
|
||||
<div className = "toolbar_items">
|
||||
<PagesList />
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
)
|
||||
}
|
||||
|
||||
export default Toolbar
|
||||
Reference in New Issue
Block a user