react-tutorial
react-tutorial copied to clipboard
02. CSS Module
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)}>
해도 상관 없는 것 아닌가 싶어서 문의 코멘트 남깁니다. :)