import _ from 'lodash'; import strings from './translation.json'; const i18next = { t: (string) => { return _.result(strings, string); } }; export default i18next;