2023-05-17 14:31:02 +02:00

10 lines
207 B
TypeScript

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