Sanity Library Reference Docs
    Preparing search index...

    Type Alias TranslateComponentMap

    TranslateComponentMap: Record<
        string,
        ComponentType<{ children?: ReactNode }>
        | keyof React.JSX.IntrinsicElements,
    >

    A map of component names to React components. The component names are the names used within the locale resources, eg a key of SearchTerm should be rendered as <SearchTerm/> or <SearchTerm>{{term}}</SearchTerm> (no whitespace in tag, nor attributes).

    The components receives children, but no other props.