14 lines
211 B
TypeScript
14 lines
211 B
TypeScript
import EmailDebugTool from './debug-tool';
|
|
|
|
export default function CourrierLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
{children}
|
|
<EmailDebugTool />
|
|
</>
|
|
);
|
|
}
|