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/App.tsx Normal file
View File

@@ -0,0 +1,7 @@
import * as React from "react";
export function AppComponent() {
return <div>Hello</div>;
}
export const App = AppComponent;