8 lines
235 B
TypeScript
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"));
|