learnhouse/front/app/layout.tsx
2023-01-11 23:06:32 +01:00

14 lines
356 B
TypeScript

import "../styles/globals.css";
import StyledComponentsRegistry from "../services/lib/styled-registry";
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html>
<head />
<body>
{" "}
<StyledComponentsRegistry>{children}</StyledComponentsRegistry>
</body>
</html>
);
}