UNPKG

@wimdental/i18n

Version:

Simple module to localize the React using simple tools.

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