6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
import React from "react";
|
|
|
|
import * as Other from "other";
|
|
console.log(Other.default, Other.app);
|
|
React.render(React.createElement(Other.app, null), document.querySelector("#app"));
|