procurement-frontend2/src/app/layout.tsx

10 lines
157 B
TypeScript
Raw Normal View History

2024-08-14 03:51:28 +00:00
import { ReactNode } from "react";
2024-08-13 12:59:05 +00:00
2024-08-14 03:51:28 +00:00
type Props = {
children: ReactNode;
2024-08-13 12:59:05 +00:00
};
2024-08-14 03:51:28 +00:00
export default function RootLayout({ children }: Props) {
return children;
2024-08-13 12:59:05 +00:00
}