Skip to content

Instantly share code, notes, and snippets.

@sanzhardanybayev
Created June 15, 2017 09:49
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 sanzhardanybayev/e881f96dfb20be146a2c83cc7462d643 to your computer and use it in GitHub Desktop.
Save sanzhardanybayev/e881f96dfb20be146a2c83cc7462d643 to your computer and use it in GitHub Desktop.
React Stateless component
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