ComponentsDebugOn this pageDebugDebug container. Only visible if debug is set to true in config.js.Propschildren = {React.ReactNode}React children propExample with codeimport Debug from '@components/Debug';const MyComponent = () => { return ( <Debug> This content will only appear in debug mode. </Debug> );};