Initial Commit

This commit is contained in:
2018-12-25 07:55:07 -08:00
commit 0bb1bab900
8 changed files with 4346 additions and 0 deletions

11
src/index.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Root } from "./root";
import * as React from "react";
import * as ReactDOM from "react-dom";
window.onload = () => {
const body = document.getElementById("mount");
const root = <Root name="Friend" />;
ReactDOM.render(root, body);
};