chore: trigger build for web app

This commit is contained in:
fchinembiri 2026-04-28 17:48:14 +02:00
parent 66cf21ca5d
commit 837c5a5121
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import TechnicalDocs from './TechnicalDocs'
type ViewState = 'welcome' | 'login' | 'app' | 'admin' | 'portfolio' type ViewState = 'welcome' | 'login' | 'app' | 'admin' | 'portfolio'
// App entry point for GeoCrop Web
function App() { function App() {
const [view, setView] = useState<ViewState>('welcome') const [view, setView] = useState<ViewState>('welcome')
const [isAdmin, setIsAdmin] = useState<boolean>(localStorage.getItem('isAdmin') === 'true') const [isAdmin, setIsAdmin] = useState<boolean>(localStorage.getItem('isAdmin') === 'true')