diff --git a/frontend/src/components/navbar.js b/frontend/src/components/navbar.js deleted file mode 100644 index 11c75ea..0000000 --- a/frontend/src/components/navbar.js +++ /dev/null @@ -1,50 +0,0 @@ -import React from 'react'; -import AppBar from '@material-ui/core/AppBar'; -import Tabs from '@material-ui/core/Tabs'; -import Tab from '@material-ui/core/Tab'; -import CssBaseline from '@material-ui/core/CssBaseline'; -import { makeStyles } from '@material-ui/core/styles'; -import { Link } from "react-router-dom"; -import Toolbar from '@material-ui/core/Toolbar'; -import Link1 from '@material-ui/core/Link'; - - -const useStyles = makeStyles(theme => ({ - root: { - flexGrow: 1, - }, - title: { - paddingTop: 10, - }, - grow: { - flexGrow: 1, - }, - tabs: { - ...theme.mixins.toolbar, - marginRight: 15 - } - -})); - -export default function Navbar(props) { - const classes = useStyles(); - const [value, setValue] = React.useState(0); - - const handleChange = (event, newValue) => { - setValue(newValue); - }; - return ( - - - - - -
- - - - - - - ); -}