This repository has been archived on 2022-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
tghandbook/lib/index.tsx

7 lines
174 B
TypeScript
Raw Normal View History

2020-06-16 09:32:48 +00:00
import * as React from "react";
import * as ReactDOM from "react-dom";
import App from "./App";
const main = document.getElementById("app");
ReactDOM.render(<App />, main);