chore: trigger build for web app
This commit is contained in:
parent
66cf21ca5d
commit
837c5a5121
|
|
@ -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')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue