esbuild-wasm-bundler/app.tsx
2024-06-07 16:54:12 -04:00

8 lines
235 B
TypeScript

import React from "react";
//const other = import("./app-dynamic.tsx");
import * as Other from "./other.tsx";
console.log(Other.default, Other.app);
React.render(React.createElement(Other.app, null), document.querySelector("#app"));