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