반응형
- prop-types란?
- props는 전달받은 props가 내가 원하는 props인지 확인해주는 역할을 한다.
- 프로젝트 파일에 들어가서 npm i prop-types를 해준다.
- 설치확인은 package.json에서 확인
- props는 전달받은 props가 내가 원하는 props인지 확인해주는 역할을 한다.
설치방법
- 프로젝트 파일에 들어가서 npm i prop-types를 해준다.
- 설치확인은 package.json에서 확인
-
- 사용이유
- 만약 ⇒ picture를 보내야 하는데 imges를 보내거나 한다면 props가 들어가지 않을 것이고 component는 제대로 작동하지 않을 것이다. 때문에 prop-types를 사용한다.
- 사용방법
- import PropTypes from "prop-types”
- 사용이유
반응형
'Front > react' 카테고리의 다른 글
[오류해결] To address all issues (including breaking changes), run: npm audit fix --force (0) | 2024.01.19 |
---|---|
[React] Typo in static class property declaration 해결 (0) | 2022.04.13 |
img elements must have an alt prop, either with meaningful text, or an empty string for decorative images 경고 (0) | 2022.04.11 |
react 18 렌더링 변화 (0) | 2022.04.07 |
React jsx구조 (0) | 2022.03.27 |