Added admin panel - this should complete all of the dummied out features

This commit is contained in:
2021-03-11 11:15:56 +11:00
parent b6e707d047
commit 34b6a25bb5
8 changed files with 778 additions and 2 deletions
+2
View File
@@ -25,6 +25,8 @@ const App = props => {
<LazyRoute path='/login' component={() => import('./pages/login')} />
<LazyRoute path='/account' component={() => import('./pages/account')} />
<LazyRoute path='/admin' component={() => import('./pages/admin')} />
<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} />} />