velopert / react-tutorial

벨로퍼트와 함께하는 모던 리액트 튜토리얼 문서
https://react.vlpt.us/
350 stars 101 forks source link

02. CSS Module #33

Open towozy opened 4 years ago

towozy commented 4 years ago

https://github.com/velopert/react-tutorial/blob/master/styling/02-css-module.md

해당 내용에서

import styles from './CheckBox.module.css';
import classNames from 'classnames/bind';

const cx = classNames.bind(styles);

function CheckBox({ children, checked, ...rest }) {
  return (
    <div className={cx('checkbox')}>

부분이 있는데 그냥

import styles from './CheckBox.module.css';
import classnames from 'classnames';

function CheckBox({ children, checked, ...rest }) {
  return (
    <div className={classnames(styles.checkbox)}>

해도 상관 없는 것 아닌가 싶어서 문의 코멘트 남깁니다. :)