Created
December 16, 2017 20:03
-
-
Save vigzmv/127207365f0b90bd7f515e534135287d to your computer and use it in GitHub Desktop.
react-parcel-example Raw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import './ExampleApp.css'; | |
class ExampleApp extends Component { | |
render() { | |
return ( | |
<div className="App"> | |
<img | |
className="App-Logo" | |
src="https://user-images.githubusercontent.com/19409/31321658-f6aed0f2-ac3d-11e7-8100-1587e676e0ec.png" | |
alt="Parcel Logo" | |
/> | |
<h1 className="App-Title">React-Parcel Example</h1> | |
</div> | |
); | |
} | |
} | |
export default ExampleApp; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment