Skip to content

Instantly share code, notes, and snippets.

@davepoon
Created July 16, 2017 12:55
Show Gist options
  • Save davepoon/7eab2ecaebdf5c4321579ecf39b03748 to your computer and use it in GitHub Desktop.
Save davepoon/7eab2ecaebdf5c4321579ecf39b03748 to your computer and use it in GitHub Desktop.
React Stateless Component webstorm template
import React, { PropTypes } from 'react';
const $NAME = (props) => {
return (
);
}
$NAME .propTypes = {
};
$NAME .defaultProps = {
};
export default $NAME;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment