Get initial implementation for react working

This commit is contained in:
Dane Everitt 2019-06-09 17:29:10 -07:00
parent 37715762cd
commit 3f2a4b5762
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 344 additions and 422 deletions

View file

@ -0,0 +1,12 @@
import * as React from 'react';
import { hot } from 'react-hot-loader/root';
class App extends React.PureComponent {
render () {
return (
<h1>Hello</h1>
);
}
}
export default hot(App);