React-propsType和defaultProps

TodoItem.propTypes={
  content:PropTypes.string,
  text:PropTypes.string.isRequired,
  handleDeleteItem:PropTypes.func,
  index:PropTypes.number
}
TodoItem.defaultProps={
  text:"1",
}