accounts-frontend/src/components/i18n/reducer.js
2016-05-19 22:50:15 +03:00

10 lines
178 B
JavaScript

import { SET_LOCALE } from './actions';
export default function(state = {}, {type, payload}) {
if (type === SET_LOCALE) {
return payload;
}
return state;
}