File size: 336 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { withStorageKey } from '@automattic/state-utils';
import { combineReducers } from 'calypso/state/utils';
import languageNames from './language-names/reducer';
import localeSuggestions from './locale-suggestions/reducer';
export default withStorageKey(
'i18n',
combineReducers( {
languageNames,
localeSuggestions,
} )
);
|