This commit is contained in:
2020-10-10 13:52:57 +03:00
committed by Stepan Usatiuk
commit 442e882b72
24 changed files with 18262 additions and 0 deletions

14
frontend/src/index.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>My Parcel Project</title>
</head>
<body>
<div id="root"></div>
<script src="./index.tsx"></script>
</body>
</html>

4
frontend/src/index.tsx Normal file
View File

@@ -0,0 +1,4 @@
import * as React from "react";
import { render } from "react-dom";
render(<h1>Hello World</h1>, document.getElementById("root"));