Kaballas's picture
initialize project structure with essential configurations and components
56b6519
raw
history blame contribute delete
297 Bytes
import deDE from './de-DE';
import enUS from './en-US';
import frFR from './fr-FR';
import zhCN from './zh-CN';
export default {
'en-US': {
translation: enUS,
},
'zh-CN': {
translation: zhCN,
},
'de-DE': {
translation: deDE,
},
'fr-FR': {
translation: frFR,
},
};