CSS 모듈

CSS 모듈 사용법

/* Button.module.css */
.button {
  background-color: blue;
  color: white;
  padding: 10px 20px;
}

.primary {
  background-color: green;
}
import styles from './Button.module.css';

function Button() {
  return (
    <button className={styles.button}>클릭</button>
  );
}

동작 원리

/* 작성한 코드 */
.button { color: blue; }

/* 실제 변환된 코드 */
.Button_button__2Rfj3 { color: blue; }
<button class="Button_button__2Rfj3">클릭</button>