2024-06-03 11:39:19 -04:00
|
|
|
import React from "react";
|
|
|
|
|
2024-06-07 16:54:12 -04:00
|
|
|
//const other = import("./app-dynamic.tsx");
|
|
|
|
|
|
|
|
import * as Other from "./other.tsx";
|
2024-06-03 16:12:38 -04:00
|
|
|
console.log(Other.default, Other.app);
|
|
|
|
React.render(React.createElement(Other.app, null), document.querySelector("#app"));
|