kgroad-frontend2/src/app/layout.tsx

10 lines
157 B
TypeScript

import { ReactNode } from "react";
type Props = {
children: ReactNode;
};
export default function RootLayout({ children }: Props) {
return children;
}