simple rtc demo

This commit is contained in:
CoolElectronics 2023-08-10 12:19:13 -04:00
commit e6443eb06e
No known key found for this signature in database
GPG key ID: F63593D168636C50
11 changed files with 6373 additions and 0 deletions

10
client/main.tsx Normal file
View file

@ -0,0 +1,10 @@
import "preact/debug";
import { h, render } from 'preact'
import 'preact/devtools';
import App from "./App";
const container = document.getElementById("app") as HTMLElement;
let app = <App />;
console.log(app);
render(<App />, container);