import type { ProvidedEntity } from '@h5web/shared'; import styles from './RawInspector.module.css'; interface Props { entity: ProvidedEntity; } function RawInspector(props: Props) { const { entity } = props; return (
Inspect
        {JSON.stringify(
          entity,
          (key, value) => {
            // Bypass cyclic dependencies
            return key !== 'parents' && key !== 'children' ? value : undefined;
          },
          2
        )}
      
); } export default RawInspector;