GoScrobble/web/src/App.js

40 lines
1.0 KiB
JavaScript
Raw Normal View History

import { Route, Switch, withRouter } from 'react-router-dom';
import Home from './Pages/Home';
import About from './Pages/About';
import Dashboard from './Pages/Dashboard';
import Profile from './Pages/Profile';
import Admin from './Pages/Admin';
import Login from './Pages/Login';
import Register from './Pages/Register';
import Navigation from './Components/Navigation';
2021-03-26 08:06:28 +00:00
import 'bootstrap/dist/css/bootstrap.min.css';
import './App.css';
2021-03-24 03:29:35 +00:00
2021-03-31 00:16:42 +00:00
const App = () => {
let boolTrue = true
return (
<div>
<Navigation />
<Switch>
2021-03-31 00:16:42 +00:00
<Route exact={boolTrue} path={["/", "/home"]} component={Home} />
<Route path="/about" component={About} />
<Route path="/dashboard" component={Dashboard} />
<Route path="/profile" component={Profile} />
<Route path="/admin" component={Admin} />
<Route path="/login" component={Login} />
<Route path="/register" component={Register} />
</Switch>
</div>
);
}
2021-03-31 00:16:42 +00:00
export default withRouter(App);