Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created January 2, 2018 05:15
Show Gist options
  • Save MicroBenz/fbf52bda3ed72a6818d98d99647f137f to your computer and use it in GitHub Desktop.
Save MicroBenz/fbf52bda3ed72a6818d98d99647f137f to your computer and use it in GitHub Desktop.
IntroToReact
import React from 'react';
export default class BasicComponent extends React.Component {
render() {
return (
<div>
<h1>Hello React</h1>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment