mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-12 08:19:06 +05:30
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
|
import { SET_LOCALE } from './actions';
|
||
|
|
||
|
export default function(state = {}, {type, payload}) {
|
||
|
if (type === SET_LOCALE) {
|
||
|
return payload;
|
||
|
}
|
||
|
|
||
|
return state;
|
||
|
}
|