|Storybook| 리액트에 CSS넣는 법은 많다. 하지만

|Storybook| 리액트에 CSS넣는 법은 많다. 하지만
import styled from "styled-components";
import { createGlobalStyle } from "styled-components"

const GlobalStyle = createGlobalStyle`
    button{
      margin: 0.5rem;
    }
`
const Practice = styled.button`
  padding: 1rem;
  font-size: 2rem;
  background: powderblue;
  border-radius: 1rem;
  transition: 0.5s;
  &:hover{  
    background-color : yellow;
    color : black
  }
`;

export default function App() {
  return (
    <>
      <GlobalStyle />
      <Practice>Practice!</Practice>;
    </>
  )
}

결과물은


©lunadein2022 2022. All rights reserved.