4. styled components
์ปดํฌ๋ํธ๋ก ์๊ฐํ๊ธฐ
์ธ๋ผ์ธ ์คํ์ผ์ด ๋์ํ๋ ๋ฐฉ๋ฒ
const textStyles = {
color: white,
backgroundColor: black
}
<p style={textStyles}>inline style!</p><p style="color: white; backgrond-color: black;">inline style!</p>CSS in JS๊ฐ ๋์ํ๋ ๋ฐฉ๋ฒ
import styled from 'styled-components';
const Text = styled.div`
color: white,
background: black
`
<Text>Hello CSS-in-JS</Text>์ฐจ์ด์
CSS-in-JS์ ์ฑ๋ฅ
Last updated