9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import RootStyleRegistry from './emotion';
|
|
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<RootStyleRegistry>{children}</RootStyleRegistry>
|
|
);
|
|
}
|