import Translate from "@docusaurus/Translate" import { CreateEdge } from "@theme/JSONSchemaViewer/components" import { SchemaHierarchyComponent } from "@theme/JSONSchemaViewer/contexts" import type { JSX } from "react" import type { JSONSchemaNS } from "@theme/JSONSchemaViewer/types" type Props = { [x: string]: any schema: JSONSchemaNS.Array } export default function CreateContains(props: Props): JSX.Element { const { schema } = props let item = schema.contains if (item === undefined) { return <> } const containsLabel = ( {"items[..., x, ...]"} ) return ( ) }