All files / src/common i18next.js

0% Statements 0/4
100% Branches 0/0
0% Functions 0/1
0% Lines 0/4
1 2 3 4 5 6 7 8 9 10                   
import _ from 'lodash';
import strings from './translation.json';
 
const i18next = {
    t: (string) => {
        return _.result(strings, string);
    }
};
 
export default i18next;