TimeChain/start.js
Jason Tudisco 66fe009fa7 Adding small lib for toast messages.
Adding ability to save gif.. but gif never come through with copy paste. Just html with gif urls.
Adding ability to right click on content and put on clipboard.
2022-04-03 17:00:21 -05:00

24 lines
503 B
JavaScript

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)