diff options
| author | darkuss <darkussdelta@gmail.com> | 2026-08-13 05:13:32 +0200 |
|---|---|---|
| committer | darkuss <darkussdelta@gmail.com> | 2026-08-13 05:13:32 +0200 |
| commit | 5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (patch) | |
| tree | fd50520f319ec22798f8b3629899cd1bbef5af23 /src/app.tsx | |
init
Diffstat (limited to 'src/app.tsx')
| -rw-r--r-- | src/app.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/app.tsx b/src/app.tsx new file mode 100644 index 0000000..c602c8f --- /dev/null +++ b/src/app.tsx @@ -0,0 +1,11 @@ +import { Taskbar } from "./taskbar"; +import { Desktop } from "./desktop"; + +export function App() { + return <> + <div id="bg"><div></div></div> + <div id="bg" class="reverse"><div></div></div> + <Desktop /> + <Taskbar /> + </> +} |
