| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 1x 1x 1x 1x | import { LocalizedStrings } from '../index';
import * as form from './form/strings.en.json';
import Strings from './res/strings';
import * as toolbar from './toolbar/strings.en.json';
import { combineReducers } from 'redux';
const _strings: LocalizedStrings = {
...Strings,
form,
toolbar
};
export default _strings;
|