initial commit
This commit is contained in:
14
src/components/app.tsx
Normal file
14
src/components/app.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user