Skip to content

Instantly share code, notes, and snippets.

@vigzmv
Created December 16, 2017 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vigzmv/127207365f0b90bd7f515e534135287d to your computer and use it in GitHub Desktop.
Save vigzmv/127207365f0b90bd7f515e534135287d to your computer and use it in GitHub Desktop.
react-parcel-example Raw
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