Styled-components sizə imkan verir ki, JSX-də inline olaraq componenti yaradıb elə yerindəcə css(JSX yox bildiyimiz pure css) tətbiq edəsiniz.
Məsələn:
const Button = styled.button`
text-transform: capitalize;
font-size: 1.4rem;
background:transparent;
border: 0.05rem solid;
`
const Button = styled.button`
text-transform: capitalize;
font-size: 1.4rem;
background:transparent;
border: 0.05rem solid;
`
Comments
Post a Comment