Button에서 페이지를 이동시키는 두 번째 방법은 withRouter를 사용하는 대신 Link 컴포넌트를 직접 사용하는 것입니다.

    components/common/Button.js

    import React from 'react';
    import styled, { css } from 'styled-components';
    import { Link } from 'react-router-dom';
    import palette from '../../lib/styles/palette';
    
    const buttonStyle = css`
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: bold;
      padding: 0.25rem 1rem;
      color: white;
      outline: none;
      cursor: pointer;
    
      background: ${palette.gray[8]};
      &:hover {
        background: ${palette.gray[6]};
      }
    
      ${props =>
        props.fullWidth &&
        css`
          padding-top: 0.75rem;
          padding-bottom: 0.75rem;
          width: 100%;
          font-size: 1.125rem;
        `}
    
      ${props =>
        props.cyan &&
        css`
          background: ${palette.cyan[5]};
          &:hover {
            background: ${palette.cyan[4]};
          }
        `}
    `;
    
    const StyledButton = styled.button`
      ${buttonStyle}
    `;
    
    const StyledLink = styled(Link)`
      ${buttonStyle}
    `;
    
    const Button = props => {
      return props.to ? (
        <StyledLink {...props} cyan={props.cyan ? 1 : 0} />
      ) : (
        <StyledButton {...props} />
      );
    };
    
    export default Button;

    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.