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).
Each component receives children, as well as any props provided through the componentProps
prop of <Translate>. Note that componentProps are forwarded to every component in this map
(including exotic ones like memo or forwardRef components) - intrinsic HTML tags
(eg {strong: 'strong'}) never receive them.
A map of component names to React components. The component names are the names used within the locale resources, eg a key of
SearchTermshould be rendered as<SearchTerm/>or<SearchTerm>{{term}}</SearchTerm>(no whitespace in tag, nor attributes).Each component receives
children, as well as any props provided through thecomponentPropsprop of<Translate>. Note thatcomponentPropsare forwarded to every component in this map (including exotic ones likememoorforwardRefcomponents) - intrinsic HTML tags (eg{strong: 'strong'}) never receive them.