npm install --save styled-components
import {createGlobalStyle} from 'styled-components';
export const GlobalStyled = createGlobalStyle`
body{
margin:0;
}`
Button.withComponent('a')``
(button에서 확장해서 a태그 포함)
const Anchor = styled(Button.withComponent("a"))`
color: black;
`;