2018-02-20 23:31:05 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { Route, Switch } from 'react-router-dom';
|
2018-03-20 21:02:15 +01:00
|
|
|
import { dynamicImport } from 'utils/dynamicImport';
|
2018-03-16 08:52:39 +01:00
|
|
|
import AboutPage from 'pages/AboutPage';
|
2018-03-16 18:34:26 +01:00
|
|
|
import LoginPage from 'pages/LoginPage';
|
2018-03-16 08:52:39 +01:00
|
|
|
import ShowPage from 'pages/ShowPage';
|
2018-03-15 18:54:41 +01:00
|
|
|
import FourOhFourPage from 'containers/FourOhFourPage';
|
2018-03-20 20:23:39 +01:00
|
|
|
const HomePage = dynamicImport('pages/HomePage'); // or use the provided local homepage
|
2018-02-20 23:31:05 +01:00
|
|
|
|
|
|
|
const App = () => {
|
|
|
|
return (
|
|
|
|
<Switch>
|
2018-02-23 03:05:00 +01:00
|
|
|
<Route exact path='/' component={HomePage} />
|
2018-02-23 00:59:51 +01:00
|
|
|
<Route exact path='/about' component={AboutPage} />
|
|
|
|
<Route exact path='/login' component={LoginPage} />
|
|
|
|
<Route exact path='/:identifier/:claim' component={ShowPage} />
|
|
|
|
<Route exact path='/:claim' component={ShowPage} />
|
|
|
|
<Route component={FourOhFourPage} />
|
2018-02-20 23:31:05 +01:00
|
|
|
</Switch>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|