Neah/app/courrier/debug-tool.tsx
2025-04-27 17:03:04 +02:00

10 lines
215 B
TypeScript

'use client';
import { EmailDebug } from '../components/debug/EmailDebug';
export default function EmailDebugTool() {
if (process.env.NODE_ENV === 'production') {
return null;
}
return <EmailDebug />;
}