styled-components

태권·2022년 8월 12일
0

개념알기

목록 보기
5/26

styled-components란
컴포넌트에 스타일을 적기 때문에, 간단하고 직관적

return (
     <div className="App">
       <MyStyled>
         <p>im here!!!</p>
       </MyStyled>
//scss 문법 1: 네스팅! 내가 포함하고 있는 요소에 접근할 수 있어요. ex)내 것{ 자식 것: {}}
// scss 문법 2: &는 나 자신!
const MyStyled = styled.div`
  width: 50vw;
  height: 150px;
  background-color: ${(props) => (props.bg_color ? "red" : "purple")};
  p {
    color: blue;
  }
  &:hover{
    background-color: yellow;
  }
`;
profile
2022.08 개발자 시작

0개의 댓글