38 lines
1.1 KiB
React
38 lines
1.1 KiB
React
//react
|
|
import React from 'react';
|
|
import { BrowserRouter, Switch } from 'react-router-dom';
|
|
|
|
//library components
|
|
import LazyRoute from './lazy-route';
|
|
import Markdown from './panels/markdown';
|
|
|
|
//styling
|
|
//TODO: styling import
|
|
|
|
//common components
|
|
import Header from './panels/header.jsx';
|
|
import Footer from './panels/footer.jsx';
|
|
|
|
const App = props => {
|
|
//default render
|
|
return (
|
|
<BrowserRouter>
|
|
<Header />
|
|
<Switch>
|
|
<LazyRoute exact path='/' component={() => import('./pages/homepage')} />
|
|
|
|
<LazyRoute path='/signup' component={() => import('./pages/signup')} />
|
|
<LazyRoute path='/login' component={() => import('./pages/login')} />
|
|
|
|
<LazyRoute path='/privacypolicy' component={async () => () => <Markdown content={require('../markdown/privacy-policy.md').default} />} />
|
|
<LazyRoute path='/credits' component={async () => () => <Markdown content={require('../markdown/credits.md').default} />} />
|
|
|
|
<LazyRoute path='*' component={() => import('./pages/not-found')} />
|
|
</Switch>
|
|
<Footer />
|
|
</BrowserRouter>
|
|
);
|
|
};
|
|
|
|
export default App;
|