반응형
propsType이라는 패키지에서 나온 문자 타입 확인하는 것
React JS에게 타입을 알려준다
PropTypes 설치
<script crossorigin src="https://unpkg.com/prop-types@15.7.2/prop-types.js"></script>
isRequired 설정이 가능하며
Btn.propTypes = {
text: PropTypes.string,
fontSize: PropTypes.number.isRequired,
}
default 값을 설정할 수 있다
function Btn({ txt, changeValue, fontSize = 14 }) {
반응형
'온라인 강의 > ReactJS로 영화 웹 서비스 만들기 [Nomad]' 카테고리의 다른 글
#5.0 Introduction (0) | 2023.05.22 |
---|---|
#4.3 Recap (0) | 2023.05.22 |
#4.1 Memo (0) | 2023.05.22 |
#4.0 Props (0) | 2023.05.22 |
#3.8 Recap #3.9 Final Practice and Recap (0) | 2023.05.22 |