kandimat-user-app/src/data/index.js

17 lines
277 B
JavaScript
Raw Normal View History

2019-04-08 08:04:25 +02:00
import { loadContent } from '@/helper/content'
2017-08-13 21:42:02 +02:00
import options from './options'
import theses from './theses'
import parties from './parties'
2017-08-10 23:14:45 +02:00
2019-04-08 08:04:25 +02:00
const i18n = loadContent(
'meta',
require.context('./meta', false, /\.json$/)
)
2017-08-14 22:28:12 +02:00
export {
options,
theses,
2019-04-08 08:04:25 +02:00
parties,
i18n
2017-08-14 22:28:12 +02:00
}