유호야 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;
}
반응형