blackbirdchess-docker-dev/react/src/store/Lang/LangAction.js
2020-11-16 17:14:34 +01:00

10 lines
246 B
JavaScript

import * as types from './LangTypes';
export const setCurrentLang = payload => {
localStorage.setItem('lang', payload);
return { type: types.SET_LANG, payload };
}
export const getCurrentLang = () => {
return { type: types.GET_LANG };
};