14 lines
217 B
TypeScript
14 lines
217 B
TypeScript
|
|
export default function ReportLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<section>
|
||
|
|
<div>
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
);
|
||
|
|
}
|