Problem
Currently, there is no development checking of prop types for React components. This could lead to poor development practices and errors that could be easily avoided. Checking prop types during development could avoid wrong data types from being passed and prevent errors. Refactoring becomes easier and less time-consuming.
Fix
Add type checking to any components that pass down props. Module already installed.
Problem
Currently, there is no development checking of prop types for React components. This could lead to poor development practices and errors that could be easily avoided. Checking prop types during development could avoid wrong data types from being passed and prevent errors. Refactoring becomes easier and less time-consuming.
Fix
Add type checking to any components that pass down props. Module already installed.