Add table of all storage locations

This commit is contained in:
2023-06-03 18:56:01 +00:00
parent 91fe6a590d
commit b55eb2a62c
6 changed files with 107 additions and 36 deletions
+5 -1
View File
@@ -27,7 +27,7 @@ import { Subscribe } from './PayPal.js';
import { PasswordReset, ConfirmReset } from './PasswordReset.js';
import { NotFound, PleaseLogin } from './Misc.js';
import { Debug } from './Debug.js';
import { StorageDetail, ClaimShelf } from './Storage.js';
import { Storage, StorageDetail, ClaimShelf } from './Storage.js';
import { Garden } from './Garden.js';
import { Footer } from './Footer.js';
import { LCARS1Display, LCARS2Display } from './Display.js';
@@ -244,6 +244,10 @@ function App() {
<StorageDetail token={token} user={user} />
</Route>
<Route path='/storage'>
<Storage token={token} user={user} />
</Route>
<Route path='/debug'>
<Debug token={token} user={user} />
</Route>