4. Styled-components
keyword
1. styled-componets
์ฌ์ฉ๋ฒ
import React from "react";
import styled from "styled-components";
const StyledButton = styled.button`
padding: 6px 12px;
border-radius: 8px;
font-size: 1rem;
line-height: 1.5;
border: 1px solid lightgray;
color: gray;
background: white;
`;
function Button({ children }) {
return <StyledButton>{children}</StyledButton>;
}์ถ๊ฐ ํค์๋
Tagged templates literals ๋งํฌ
with Babel
Last updated