import styled from 'styled-components';
todo list의 게시(add) 버튼을 생성하려고 한다.
const Btn = styled.button`
width: 100px;
height: 50px;
color: whitesmoke;
font-size: larger;
font-weight: 800;
background-color: #e85072;
border-radius: 5px;
`;

const Btn = styled.button`
width: 100px;
height: 50px;
color: whitesmoke;
font-size: larger;
font-weight: 800;
background-color: #e85072;
border-radius: 5px;
&:hover {
background-color: #f7c6d0df;
color: #e85072;
}
`;
&로 :hover속성을 이어준 후 코드블럭 안에 hover시 적용하고자 하는 스타일을 작성해주면 된다! 