10 lines
157 B
TypeScript
10 lines
157 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
type Props = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
export default function RootLayout({ children }: Props) {
|
|
return children;
|
|
}
|