import React from 'react'
import PropTypes from 'prop-types'

class Simple extends React.Component {
  render() {
    // ... do things with the props
  }
}

Simple.propTypes = {
  optionalString: PropTypes.string,
  optionalString: PropTypes.string,
  optionalShape: PropTypes.shape({
    optionalString: PropTypes.string,
    optionalString: PropTypes.string
  })
}

export default Simple
