Skip to main content

Debug

Debug container. Only visible if debug is set to true in config.js.

Props

  • children = {React.ReactNode}
    • React children prop

Example with code

import Debug from '@components/Debug';

const MyComponent = () => {
return (
<Debug>
This content will only appear in debug mode.
</Debug>
);
};