learnhouse/front/app/layout.tsx
2023-01-13 18:45:56 +01:00

14 lines
366 B
TypeScript

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