mirror of https://github.com/sualko/cloud_bbb
16 lines
293 B
TypeScript
16 lines
293 B
TypeScript
'use strict';
|
|
|
|
import App from './App';
|
|
import React from 'react';
|
|
import ReactDom from 'react-dom';
|
|
|
|
// Enable React devtools
|
|
window['React'] = React;
|
|
|
|
$(document).ready(() => {
|
|
const root = document.getElementById('bbb-root');
|
|
if (root) {
|
|
ReactDom.render( <App /> as any , root);
|
|
}
|
|
});
|