23 lines
822 B
JavaScript
23 lines
822 B
JavaScript
import React from 'react';
|
|
import { Route, Switch } from 'react-router-dom';
|
|
import { dynamicImport } from 'utils/dynamicImport';
|
|
import AboutPage from 'pages/AboutPage';
|
|
import LoginPage from 'pages/LoginPage';
|
|
import ShowPage from 'pages/ShowPage';
|
|
import FourOhFourPage from 'containers/FourOhFourPage';
|
|
const HomePage = dynamicImport('pages/HomePage'); // or use the provided local homepage
|
|
|
|
const App = () => {
|
|
return (
|
|
<Switch>
|
|
<Route exact path='/' component={HomePage} />
|
|
<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} />
|
|
</Switch>
|
|
);
|
|
};
|
|
|
|
export default App;
|