18 lines
316 B
JavaScript
18 lines
316 B
JavaScript
|
import 'bootstrap'
|
||
|
|
||
|
// Style
|
||
|
import bootstrap from 'bootstrap/dist/css/bootstrap.min.css'
|
||
|
import dash from './css/dashboard.css'
|
||
|
import index from './css/index.css'
|
||
|
|
||
|
// Components
|
||
|
import dashboard from './dashboard.js'
|
||
|
|
||
|
bootstrap.ref()
|
||
|
if (window.STREAM_KEY) {
|
||
|
dash.ref()
|
||
|
dashboard.start()
|
||
|
} else {
|
||
|
index.ref()
|
||
|
}
|