import { LocaleIdentifier } from '../../types';
import { useLocaleContext } from '../contexts/LocaleContext/LocaleContext';

/** Return locale that should be used instead {@link navigator.language} */
export function useLocale(): LocaleIdentifier {
  return useLocaleContext().locale;
}
