Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save polyglotpiglet/8869b67aa17f32442d9e26ee29f70290 to your computer and use it in GitHub Desktop.
Save polyglotpiglet/8869b67aa17f32442d9e26ee29f70290 to your computer and use it in GitHub Desktop.
const Kitten = (props) => {
return (
<h1>Cats</h1> // put jsx in here
)
}
// or
class Kitten extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<h1>Cat</h1>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment