setup a web app

This commit is contained in:
2019-08-02 21:45:01 +03:00
parent c0836e005f
commit 27a6887d92
13 changed files with 10484 additions and 0 deletions

7
App/src/index.tsx Normal file
View File

@@ -0,0 +1,7 @@
import "normalize.css/normalize.css";
import * as React from "react";
import { render } from "react-dom";
import { App } from "~App";
render(<App />, document.getElementById("body"));