8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
|
|
import { Root } from './Root'
|
||
|
|
import { render } from 'preact'
|
||
|
|
|
||
|
|
import './assets/style.css'
|
||
|
|
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||
|
|
render(<Root />, document.getElementById('application')!)
|