import {type PortableTextBlock, type PortableTextChild} from '@sanity/types' type Props = { value: PortableTextBlock | PortableTextChild } const DefaultObject = (props: Props): JSX.Element => { return (
{JSON.stringify(props.value, null, 2)}