/** * Get the current locale and the ability to change it * * @example * * import { useLocaleState } from 'react-admin'; * * const availableLanguages = { * en: 'English', * fr: 'Français', * } * const LocaleSwitcher = () => { * const [locale, setLocale] = useLocaleState(); * return ( *