mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
14 lines
366 B
TypeScript
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>
|
|
);
|
|
}
|