frontend/src/routes/layout.tsx

9 lines
No EOL
239 B
TypeScript

import { component$, Slot } from '@builder.io/qwik';
export default component$(() => {
return (
<div class="flex flex-col min-h-screen bg-neutral-950 text-white scrollbar-thin overflow-scroll">
<Slot />
</div>
);
});