2024-02-05 19:03:39 +01:00

8 lines
179 B
TypeScript

export function Body({ children }: React.PropsWithChildren) {
return (
<body className="bg-[#222447] text-[#d6d6d6] font-['monospace']">
{children}
</body>
);
}