web-humas-fe/app/report/layout.tsx

14 lines
217 B
TypeScript

export default function ReportLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<section>
<div>
{children}
</div>
</section>
);
}