mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-21 06:34:30 +01:00
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
export default function Debug({children}: {children: ReactNode}) {
|
|
if (process.env.NODE_ENV !== 'development') return null
|
|
return (
|
|
<div className="debug">
|
|
{children}
|
|
</div>
|
|
)
|
|
} |