11 lines
142 B
TypeScript
11 lines
142 B
TypeScript
export default function CourrierLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
{children}
|
|
</>
|
|
);
|
|
}
|