frontend/src/components/Controlbar.tsx
2025-06-08 10:47:17 +01:00

10 lines
No EOL
326 B
TypeScript

import { component$ } from "@builder.io/qwik";
// TODO: add upload button and other stuff fr
export default component$(() => {
return (
<div class="absolute fixed bottom-4 left-1/2 transform -translate-x-1/2 bg-red-400 w-1/4 p-4 rounded-lg flex items-center justify-center">
hi
</div>
)
})