UNPKG

@brizy/media-gallery

Version:
12 lines (11 loc) 282 B
import { Types } from "./types/Actions"; import * as I18n from "./i10n"; export function reducer(s, a) { switch(a.type){ case Types.SetLocale: return { code: a.payload, client: I18n.getConfig(a.payload) }; } }