import type { ReactNode } from 'react' import './style.css' export default function RootLayout({ children }: { children: ReactNode }) { return ( {children} ) }