mirror of
https://github.com/Snouzy/workout-cool.git
synced 2026-05-19 14:40:35 +00:00
15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
import { ReactElement } from "react";
|
|
|
|
interface RootLayoutProps {
|
|
params: Promise<{ locale: string }>;
|
|
children: ReactElement;
|
|
}
|
|
|
|
export default async function RootLayout({ children }: RootLayoutProps) {
|
|
|
|
return (
|
|
<div>
|
|
{children}
|
|
</div>
|
|
)
|
|
} |