Added account page, read more

The account page also has the account deletion button, which was
a *real treat* to get working right.
This commit is contained in:
2021-03-11 00:54:57 +11:00
parent 457cc85ad4
commit b6e707d047
3 changed files with 177 additions and 0 deletions
+1
View File
@@ -23,6 +23,7 @@ const App = props => {
<LazyRoute path='/signup' component={() => import('./pages/signup')} />
<LazyRoute path='/login' component={() => import('./pages/login')} />
<LazyRoute path='/account' component={() => import('./pages/account')} />
<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} />} />