mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
4a188a9a5c
First pass at a Preact UI, still short some major features but full proof of concept.
5 lines
127 B
TypeScript
5 lines
127 B
TypeScript
import { h, render } from 'preact';
|
|
import { App } from './components/App';
|
|
|
|
render(<App />, document.getElementById('app')!);
|