Preview: localesReducer.js
Size: 318 B
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/lib/frontend/store/reducers/localesReducer.js
import { LOCALE_INITIALIZE } from '../actions/initialize-locale.js';
const defaultLocale = {
language: 'en',
translations: {}
};
export const localesReducer = (state = defaultLocale, action) => {
switch (action.type) {
case LOCALE_INITIALIZE:
return action.data;
default:
return state;
}
};
Directory Contents
Dirs: 0 × Files: 16