procurement-frontend2/src/app/layout.tsx
2024-08-14 09:51:28 +06:00

10 lines
157 B
TypeScript

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