RASMUS's picture
Upload webapp/src/main.ts with huggingface_hub
3f9e727 verified
raw
history blame contribute delete
201 Bytes
import './style.css'
import { mountApp } from './app'
const root = document.querySelector<HTMLDivElement>('#app')
if (!root) {
throw new Error('App root element was not found.')
}
mountApp(root)