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