guide icon indicating copy to clipboard operation
guide copied to clipboard

Write PropTypes.* or import bool, string, etc?

Open lorensr opened this issue 7 years ago • 0 comments

import { bool, string } from 'prop-types'

Component.propTypes = {
  loading: bool.isRequired,
  name: string.isRequired
}

// or current method:

import PropTypes from 'prop-types'

Component.propTypes = {
  loading: PropTypes.bool.isRequired,
  name: PropTypes.string.isRequired
}

lorensr avatar Jan 12 '18 07:01 lorensr