webpack-bootstrap-ui-kit/src/js_old/_consts.js

14 lines
274 B
JavaScript
Raw Normal View History

2021-02-08 01:30:14 +01:00
/**
* Add your global events here
*/
2022-05-03 20:50:57 +02:00
import MAP_DRIVER from './_components/drivers/_map.google'
// import MAP_DRIVER from './_components/drivers/_map.mapbox';
2021-02-08 01:30:14 +01:00
const CONSTS = {
2022-05-03 20:50:57 +02:00
ENVS: ['xs', 'sm', 'md', 'lg', 'xl', 'xxl', 'xxxl'],
2021-02-08 01:30:14 +01:00
MAP_DRIVER,
2022-05-03 20:50:57 +02:00
}
2021-02-08 01:30:14 +01:00
2022-05-03 20:50:57 +02:00
export default CONSTS