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/taskbar/index.tsx | |
init
Diffstat (limited to 'src/taskbar/index.tsx')
| -rw-r--r-- | src/taskbar/index.tsx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/taskbar/index.tsx b/src/taskbar/index.tsx new file mode 100644 index 0000000..34377c2 --- /dev/null +++ b/src/taskbar/index.tsx @@ -0,0 +1,27 @@ +import { StartButton } from "./start" +import { Time } from "./time" + +export function Taskbar() { + return <nav> + <StartButton /> + <ul> + <li> + <button> + README.txt + </button> + </li> + <li> + <button> + KEYGEn + </button> + </li> + <li> + <button> + Chat + </button> + </li> + </ul> + <Time /> + <div id="netpunk_descender"></div> + </nav> +} |
