Listing 6-10: Validating React Elements
The first paragraph
The second paragraph
import PropTypes from 'prop-types';
function BorderBox(props){
return(
<div style={{border:"1px solid black"}}>{props.children}</div>
)
}
BorderBox.propTypes = {
children: PropTypes.element.isRequired
}
export default BorderBox;
Download the examples, report issues, and ask/answer questions in the discussion area by visiting the book's github page. All of the code for the book is also available on codesandbox.io for you to play around with.
ReactJS Foundations is published by John Wiley and Sons, Inc and is available in paperback and eBook.