부트캠프교육중/react
[React] styled components에서 attrs
뭉지야
2023. 8. 18. 15:00
728x90
# 모든 input에 적용될 attribute를 가지게 될거다.
그래서 attribute는 한번만 써줘도된다.
const Input = styled.input.attrs({ required: true, minLength: 10 })`
background-color: red;
`;
<Input />
<Input />
<Input />
<Input />
이렇게 하면 attrs 뒤의 속성이 모든 input에 다 담긴다.
728x90