scel/web/src/App.tsx
kjuulh 74ea9ddf79
All checks were successful
continuous-integration/drone/push Build is passing
feat: update
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-04-10 20:50:48 +02:00

13 lines
274 B
TypeScript

import Body from "./components/body/Body"
import Navbar from "./components/navbar/Navbar"
import RequestDownload from "./components/request-download/RequestDownload"
const App = () => <div>
<Navbar />
<Body>
<RequestDownload />
</Body>
</div>
export default App