2023-10-21 19:30:32 +02:00

8 lines
179 B
TypeScript

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