react-code-dataset
/
react-boilerplate
/internals
/templates
/containers
/LanguageProvider
/actions.js
| /* | |
| * | |
| * LanguageProvider actions | |
| * | |
| */ | |
| import { CHANGE_LOCALE } from './constants'; | |
| export function changeLocale(languageLocale) { | |
| return { | |
| type: CHANGE_LOCALE, | |
| locale: languageLocale, | |
| }; | |
| } | |