Created
July 16, 2017 12:55
-
-
Save davepoon/7eab2ecaebdf5c4321579ecf39b03748 to your computer and use it in GitHub Desktop.
React Stateless Component webstorm template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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