bang/frontend/src/i18n/index.js
2020-11-27 17:59:33 +01:00

9 lines
138 B
JavaScript

import it from './it.json'
import en from './en.json'
export const defaultLocale = 'it'
export const languages = {
it: it,
en: en,
}