Skip to content

Instantly share code, notes, and snippets.

@hpjaj
Created November 14, 2018 03:07
Show Gist options
  • Select an option

  • Save hpjaj/671c00296f2cfb66ec873e8348e2d19c to your computer and use it in GitHub Desktop.

Select an option

Save hpjaj/671c00296f2cfb66ec873e8348e2d19c to your computer and use it in GitHub Desktop.
import PropTypes from 'prop-types'
const Hello = props => (
<div>Hello {props.name}!</div>
)
Hello.defaultProps = {
name: 'David'
}
Hello.propTypes = {
name: PropTypes.string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment