summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/index.tsx
blob: 0b88b0393378f04c5e8480c7525e021dd18c2b66 (plain)
1
2
3
4
5
6
7
8
import App from "./components/app.js";
export default App;
import { render, h } from "preact";
import "./scss/main.scss";

const app = document.getElementById("app");

render(<App />, app as any);