Basic bikes page.

This commit is contained in:
Drew Larson
2017-05-23 19:25:36 -06:00
parent a42654a954
commit 2665d5e4da
6 changed files with 49 additions and 2 deletions
@@ -0,0 +1,22 @@
import React from 'react';
import ReactDOM from 'react-dom';
import injectTapEventPlugin from 'react-tap-event-plugin';
// Needed for onTouchTap
// http://stackoverflow.com/a/34015469/988941
injectTapEventPlugin();
class App extends React.Component {
render() {
return (
<div className="mdl-grid">
<div className="mdl-cell mdl-cell--12-col">
<h1>Bikes</h1>
</div>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));