mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
|
|
import "@styles/globals.css";
|
|
|
|
export default function RootLayout({ children, params }: { children: React.ReactNode , params:any}) {
|
|
|
|
return (
|
|
<>
|
|
{children}
|
|
</>
|
|
);
|
|
}
|