Signups work

This commit is contained in:
2021-03-08 13:03:46 +11:00
parent 7c09ac46da
commit d29d256e5f
3 changed files with 124 additions and 0 deletions
+2
View File
@@ -21,6 +21,8 @@ const App = props => {
<Switch>
<LazyRoute exact path='/' component={() => import('./pages/homepage')} />
<LazyRoute path='/signup' component={() => import('./pages/signup')} />
<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} />} />