2023-01-16 09:45:12 +00:00
|
|
|
import { LocaleContext } from "@dashboard/components/Locale";
|
2020-05-14 09:30:32 +00:00
|
|
|
import { useContext } from "react";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
|
|
|
function useLocale() {
|
2019-10-16 15:18:29 +00:00
|
|
|
const localeInfo = useContext(LocaleContext);
|
|
|
|
return localeInfo;
|
2019-06-19 14:40:52 +00:00
|
|
|
}
|
|
|
|
export default useLocale;
|