Added useLocale hook.

This commit is contained in:
Mike Cao 2020-09-08 20:46:31 -07:00
parent 7e26c9571e
commit 52acb691ad
5 changed files with 24 additions and 14 deletions

13
hooks/useLocale.js Normal file
View file

@ -0,0 +1,13 @@
import { useDispatch, useSelector } from 'react-redux';
import { updateApp } from 'redux/actions/app';
export default function useLocale() {
const locale = useSelector(state => state.app.locale);
const dispatch = useDispatch();
function setLocale(value) {
dispatch(updateApp({ locale: value }));
}
return [locale, setLocale];
}