Skip to content

Instantly share code, notes, and snippets.

@kvutien
Last active January 2, 2021 22:09
Show Gist options
  • Save kvutien/97f9653db9f2e5def72cf3a3bf6df6c9 to your computer and use it in GitHub Desktop.
Save kvutien/97f9653db9f2e5def72cf3a3bf6df6c9 to your computer and use it in GitHub Desktop.
minimum app.js for illustration
import './App.css';
import React,{Component} from 'react';
class App extends Component {
constructor(){
super();
}
render(){
return (
<div className="App">
<h1>Welcome to App</h1>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment