hilingriviw/src/main.tsx

7 lines
156 B
TypeScript
Raw Normal View History

2023-08-28 16:55:35 +07:00
import { render } from 'preact'
import { App } from './app.tsx'
import './index.css'
2023-09-03 17:12:06 +07:00
import './lato.css';
2023-08-28 16:55:35 +07:00
render(<App />, document.getElementById('app')!)