https://ko.reactjs.org/docs/typechecking-with-proptypes.html
prop의 type을 미리 정의해서 component에 전달된 값이 유효한지 확인할 수 있다.
npm i prop-types
package.json
import PropTypes from 'prop-types';
Food.propTypes = {
name:PropTypes.string.isRequired,
image:PropTypes.string.isRequired,
rating:PropTypes.number
};
type
, isRequired
여부 확인 가능