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