UNPKG

quickbuild

Version:

A mature, feature-complete application generator with an emphasis on speed

15 lines (12 loc) 206 B
/* * * LanguageProvider actions * */ import { CHANGE_LOCALE } from './constants'; export function changeLocale(languageLocale) { return { type: CHANGE_LOCALE, locale: languageLocale, }; }