frontend: add LoginGate, wire session into App, add logout link

This commit is contained in:
2026-07-24 21:47:41 +02:00
parent 6dd4d9309c
commit 815db1ec1f
5 changed files with 110 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import { LoginGate } from './LoginGate.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<LoginGate />
</StrictMode>,
)