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 } export default function Constant(props: Props): JSX.Element { const { schema } = props // Translated Labels const constantLabel = ( {"Constant value :"} ) return (
{constantLabel}  
) }