@wimdental/i18n
Version:
Simple module to localize the React using simple tools.
23 lines (20 loc) • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.setLanguage = setLanguage;
/**
* Action types
*/
var actionTypes = exports.actionTypes = {
SET_LANGUAGE: '@wimdental/i18n/SET_LANGUAGE'
/**
* Se language action creator
* @param {*} language
*/
};function setLanguage(language) {
return {
type: types.SET_LANGUAGE,
payload: language
};
}