| 1 |
import React from 'react'; |
| 2 |
import ReactDOM from 'react-dom'; |
| 3 |
import Dashboard from "./Dashboard" |
| 4 |
import './assets/styles/style.scss' |
| 5 |
|
| 6 |
document.addEventListener('DOMContentLoaded', () => { |
| 7 |
var root_id = "bs-dashboard" |
| 8 |
if ('undefined' !== typeof document.getElementById(root_id) && null !== document.getElementById(root_id)) { |
| 9 |
ReactDOM.render(<Dashboard />, document.getElementById(root_id)); |
| 10 |
} |
| 11 |
}); |