styled-componentsstyled-resetvscode-styled-components
예시 : 전역스타일링을 통해 reset.css를 적용
import { createGlobalStyle } from 'styled-components';
import reset from 'styled-reset';
const GlobalStyle = createGlobalStyle`
${reset}
/* 추가적인 전역 스타일 정의 */
body {
font-family: 'Arial', sans-serif;
color: #333;
}
`;
예시
const Button = styled.button`
background-color: ${props => props.primary ? 'blue' : 'white'};
color: ${props => props.primary ? 'white' : 'blue'};
padding: 8px 16px;
border: 1px solid blue;
border-radius: 4px;
`;