wallet-core/packages/demobank-ui/src/index.tsx
2022-10-26 14:49:08 -03:00

8 lines
170 B
TypeScript

import App from "./components/app.js";
export default App;
import { render, h } from "preact";
const app = document.getElementById("app");
render(<App />, app as any);