Skip to content

Instantly share code, notes, and snippets.

@jonathanmeaney
Created March 18, 2018 11:36
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 jonathanmeaney/b9d7f2a9f464c9a19f2db2867bdb24ac to your computer and use it in GitHub Desktop.
Save jonathanmeaney/b9d7f2a9f464c9a19f2db2867bdb24ac to your computer and use it in GitHub Desktop.
import React from 'react';
const SimpleComponent = React.createClass({
render() {
return(
<div>
<h1>Simple Component</h1>
<p>Hello, WORLD!!!!!</p>
</div>
)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment