import React, { useContext, ComponentType } from 'react'; import IntlContext from './intl-context'; export function withLocale(WrappedComponent: ComponentType) { return (props: T) => { const locale = useContext(IntlContext); return ; }; }