exbert / client /src /ts /main.ts
bhoov's picture
Update styles
81fd184
raw
history blame
No virus
368 Bytes
import { MainGraphic } from './vis/attentionVis'
import "!file-loader?name=exBERT.html!../exBERT.html";
import "!file-loader?name=index.html!../index.html";
import "../css/main.scss"
window.onload = () => {
const base = document.getElementById('attention-vis')
//@ts-ignore
const mainVis = new MainGraphic(base)
console.log("Done loading window");
}