import Translate from "@docusaurus/Translate" import { CreateValue } from "@theme/JSONSchemaViewer/JSONSchemaElements" import type { JSX } from "react" import type { JSONSchema } from "@theme/JSONSchemaViewer/types" type Props = { schema: Exclude } // Default value export default function DefaultValue(props: Props): JSX.Element { const { schema } = props // Translated Labels const defaultLabel = ( {"Default value :"} ) return (
{defaultLabel}  
) }