import React, { createContext } from 'react'; const AppIntlContext = createContext(); /** * Application intl provider. */ function AppIntlProvider({ currentLocale, isRTL, children }) { const provider = { currentLocale, isRTL, isLTR: !isRTL, direction: isRTL ? 'rtl' : 'ltr', }; return ( {children} ); } const useAppIntlContext = () => React.useContext(AppIntlContext); export { AppIntlProvider, useAppIntlContext };