import './src/less/main.less' import './src/css/tagify.scss' import App from './src/ui/app.riot' import { component, install } from 'riot' let id = 0 install(function(component) { // all components will pass through here component.uid = ()=>{ return ++id; } }) window.debugging = true setTimeout(() => { document.getElementById('main-loading')?.remove() component(App)(document.getElementById('timechain')) Sentry.captureMessage('Application Started') }, 0)