By: Mayne
Inspect current node information in JSON format
import ReactJson from 'react-json-view'
export default function MyBlock(props) {
return (
<div className="w-full h-full p-4 bg-gray-50 p-2 rounded-md">
<ReactJson
src={props.__context__?.currentNode || {}}
/>
</div>
);
}