initial commit

This commit is contained in:
2020-04-19 23:31:59 +02:00
commit f37e5d1fd0
10 changed files with 9363 additions and 0 deletions

14
src/components/app.tsx Normal file
View File

@@ -0,0 +1,14 @@
import * as React from "react";
class App extends React.Component {
constructor(props) {
super(props);
}
render(): JSX.Element {
return <h1>Hello world</h1>;
}
}
export default App;