온라인 강의/ReactJS로 영화 웹 서비스 만들기 [Nomad]
#5.1 Tour of CRA
유호야
2023. 5. 23. 03:54
반응형
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;
}
반응형