accounts-frontend/src/components/i18n/reducer.js

10 lines
178 B
JavaScript
Raw Normal View History

2016-05-20 01:11:43 +05:30
import { SET_LOCALE } from './actions';
export default function(state = {}, {type, payload}) {
if (type === SET_LOCALE) {
return payload;
}
return state;
}