Files
HabitTrove/app/debug/layout.tsx
2026-03-09 12:33:06 +01:00

14 lines
287 B
TypeScript

import { notFound } from 'next/navigation';
import { ReactNode } from "react";
export default function Debug({children}: {children: ReactNode}) {
if (process.env.NODE_ENV !== 'development') {
notFound()
}
return (
<div className="debug">
{children}
</div>
)
}