CSS/Sass Module
/* Input.module.scss */
.input {
display: bloc;
width: 300p;
padding: 2em 3e;
background: pink;
}import style from './Input.module.scss'
// 객체 구조 분해 할당
import { input } from './Input.module.scss' import React from 'react'
import { input } from './Input.module.scss'
const Input = (props) => {
const { size, placeholder, children, ...restProps } = props
return (
<input
type="text"
placeholder={placeholder}
// 클래스 이름에 설정
className={input}
{...restProps}
>
{children}
</input>
)
}Last updated