Skip to content

Instantly share code, notes, and snippets.

@ihfazhillah
Created November 2, 2017 09:49
Show Gist options
  • Save ihfazhillah/13a912f2b28cc40bfb82a5e6ca80f79b to your computer and use it in GitHub Desktop.
Save ihfazhillah/13a912f2b28cc40bfb82a5e6ca80f79b to your computer and use it in GitHub Desktop.
a simple react component
import React from 'react';
class Greet extends React.Component {
render(){
return <h1>Hello world</h1>
}
}
export default Greet;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment