Files
ttyd/html/src/index.tsx
2020-02-06 17:43:40 +08:00

7 lines
161 B
TypeScript

import 'whatwg-fetch';
import { h, render } from 'preact';
import { App } from './components/app';
import './style/index.scss';
render(<App />, document.body);