diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index 4d1bfe6..4b0e428 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -9,6 +9,7 @@ import TechnicalDocs from './TechnicalDocs' type ViewState = 'welcome' | 'login' | 'app' | 'admin' | 'portfolio' +// App entry point for GeoCrop Web function App() { const [view, setView] = useState('welcome') const [isAdmin, setIsAdmin] = useState(localStorage.getItem('isAdmin') === 'true')