create-react-app and couchdb

This commit is contained in:
Aquaticholic
2021-09-23 14:01:02 -06:00
parent 008c033e97
commit 3e543b37f7
44 changed files with 42911 additions and 0 deletions
@@ -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