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