Skip to content

Instantly share code, notes, and snippets.

@rcgalbo
Last active March 19, 2018 21:51
Show Gist options
  • Save rcgalbo/ca2140ff6f424374cff5e2701913736f to your computer and use it in GitHub Desktop.
Save rcgalbo/ca2140ff6f424374cff5e2701913736f to your computer and use it in GitHub Desktop.
react.js component boilerplate
import React, {Component} from 'react';
class someFeature extends Component {
constructor(props){
super(props);
this.state = {};
}
render(){
return (
<div className="overlay">
<div></div>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment