PropTypes
https://reactjs.org/docs/typechecking-with-proptypes.html Type Checking Type checking is an important principle in programming. JavaScript lets you get away with a lot of potentially hazardous coding practices. Consider the following: When you code let a = 1 and then let a = 2, JavaScript yells at you and breaks. But