import { CreateNodes } from "@theme/JSONSchemaViewer/components" import { SchemaHierarchyComponent } from "@theme/JSONSchemaViewer/contexts" import type { JSX } from "react" import type { JSONSchema } from "@theme/JSONSchemaViewer/types" type Props = { schema: Exclude [x: string]: any } export default function NotSchema(props: Props): JSX.Element { const { schema } = props let typedSchema = schema.not! let typeOf = "not" return (
{typeOf}
) }