UNPKG

@wimdental/i18n

Version:

Simple module to localize the React using simple tools.

19 lines (16 loc) 315 B
/** * Action types */ export const actionTypes = { SET_LANGUAGE: '@wimdental/i18n/SET_LANGUAGE' }; /** * Se language action creator * @param {*} language */ export function setLanguage (language) { return { type: actionTypes.SET_LANGUAGE, payload: language }; }