import type { JSONSchema } from "@theme/JSONSchemaViewer/types" import { useJSVOptionsContext } from "@theme/JSONSchemaViewer/contexts" import { printSchemaType } from "@theme/JSONSchemaViewer/utils/QualifierMessages" import type { JSX } from "react" type Props = { value: unknown schema: JSONSchema } export default function CreateValue(props: Props): JSX.Element { const { value, schema } = props const { ValueComponent } = useJSVOptionsContext() if (ValueComponent) { return } return printSchemaType(value) }