chore(frontend): app v1
continuous-integration/drone/push Build is passing

This commit is contained in:
David Fencl
2025-11-26 20:09:57 +01:00
parent f52bfe3efe
commit ba9885f1cb
21 changed files with 4070 additions and 19 deletions
+20
View File
@@ -0,0 +1,20 @@
import { useState } from 'react'
import LoadingScreen from './components/LoadingScreen'
import Home from './components/Home'
import './App.css'
function App() {
const [isLoading, setIsLoading] = useState(true)
return (
<>
{isLoading ? (
<LoadingScreen onLoaded={() => setIsLoading(false)} />
) : (
<Home />
)}
</>
)
}
export default App