반응형
propTypes 설치
$ npm i prop-types
module.css
전체 전역적인 css를 불러오는 것이 아닌 특정 요소에 필요한 style만 불러오고 싶을 때 module.css와 같은 방법을 이용할 수 있다.
import styles from './Button.module.css';
function Button({ txt, bgc = 'red' }) {
return (
<button className={styles.btn}>{txt}</button>
)
}
Button.moduel.css
.btn {
background-color: tomato;
color: white;
}
반응형
'온라인 강의 > ReactJS로 영화 웹 서비스 만들기 [Nomad]' 카테고리의 다른 글
#6.2 Deps (0) | 2023.05.23 |
---|---|
#6.0 Introduction (0) | 2023.05.23 |
#5.0 Introduction (0) | 2023.05.22 |
#4.3 Recap (0) | 2023.05.22 |
#4.2 Prop Types (0) | 2023.05.22 |