mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
685 B
21 lines
685 B
import React from 'react'
|
|
import { Route, Redirect, Switch } from 'react-router-dom'
|
|
import NavBarContainer from '../containers/NavBarContainer';
|
|
import HomeContainer from '../containers/HomeContainer'
|
|
import SignUpContainer from '../containers/SignUpContainer'
|
|
import NotFound from '../components/NotFound'
|
|
import {drizzle} from '../index'
|
|
|
|
const routes = (
|
|
<div>
|
|
<NavBarContainer />
|
|
<Switch>
|
|
<Route exact path="/" component={HomeContainer} />
|
|
<Redirect from='/home' to="/" />
|
|
<Route path="/signup" component={SignUpContainer} />
|
|
<Route component={NotFound} />
|
|
</Switch>
|
|
</div>
|
|
);
|
|
|
|
export default routes
|
|
|