mirror of
https://github.com/tsl0922/ttyd.git
synced 2026-01-08 03:44:22 +01:00
7 lines
161 B
TypeScript
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);
|