Skip to content

Instantly share code, notes, and snippets.

@JaeYeopHan
Last active May 5, 2017 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JaeYeopHan/c52f811f013b5cfe6fe355131b3a71b0 to your computer and use it in GitHub Desktop.
Save JaeYeopHan/c52f811f013b5cfe6fe355131b3a71b0 to your computer and use it in GitHub Desktop.
React live template
import React, { Component } from 'react';
import PropTypes from 'prop-types';
const propTypes = {
};
const defaultProps = {
};
class componentName extends Component {
constructor(props) {
super(props);
}
render() {
return (
);
}
}
componentName.PropTypes = propTypes;
componentName.defaultProps = defaultProps;
export default componentName;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment