13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
import App from './src/ui/app.riot'
|
|
|
|
import { component } from 'riot'
|
|
|
|
window.debugging = true;
|
|
|
|
setTimeout(()=>{
|
|
document.getElementById('main-loading').remove();
|
|
component(App)(document.getElementById('timechain'));
|
|
},0)
|
|
|
|
|