1
Fork 0
mirror of https://github.com/thegeneralist01/archivr synced 2026-07-21 18:55:36 +02:00

feat(collections): frontend — CollectionsView, nav, visibility in ContextRail

This commit is contained in:
TheGeneralist 2026-06-26 17:04:49 +02:00
parent dd56fc8c70
commit 763cb8e17f
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
5 changed files with 250 additions and 3 deletions

View file

@ -9,6 +9,7 @@ import EntriesView from './components/EntriesView'
import RunsView from './components/RunsView'
import AdminView from './components/AdminView'
import TagsView from './components/TagsView'
import CollectionsView from './components/CollectionsView'
import ContextRail from './components/ContextRail'
export const AuthContext = createContext(null);
@ -213,6 +214,9 @@ export default function App() {
onViewChange={handleViewChange}
/>
)}
{view === 'collections' && (
<CollectionsView archiveId={archiveId} />
)}
</div>
<ContextRail
archiveId={archiveId}