import React from 'react'; | |
class SimpleComponent extends React.Component { | |
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