Created
June 15, 2017 09:49
-
-
Save sanzhardanybayev/e881f96dfb20be146a2c83cc7462d643 to your computer and use it in GitHub Desktop.
React Stateless component
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 StateLessComponentName = (props) => { | |
return ( | |
<div> | |
</div> | |
); | |
} | |
StateLessComponentName.propTypes = { | |
}; | |
export default StateLessComponentName; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment