apple2js/js/entry.tsx
Will Scullin 4a188a9a5c
Preact UI (#106)
First pass at a Preact UI, still short some major features but full proof of concept.
2022-05-10 06:52:06 -07:00

5 lines
127 B
TypeScript

import { h, render } from 'preact';
import { App } from './components/App';
render(<App />, document.getElementById('app')!);