styled components

styled-components ๊ฐœ๋…

  • Automatic critical CSS : styled-components๋Š” ํŽ˜์ด์ง€์— ์‹ค์ œ๋กœ ๋ Œ๋”๋ง๋˜๋Š” ์ปดํฌ๋„ŒํŠธ์—๋งŒ ์Šคํƒ€์ผ์ด ์ ์šฉ๋˜๋ฏ€๋กœ ๋ถˆํ•„์š”ํ•œ CSS๋ฅผ ์ œ๊ฑฐํ•  ์ˆ˜ ์žˆ๋‹ค.

  • No class name bugs : ๊ณ ์œ ํ•œ ํด๋ž˜์Šค ์ด๋ฆ„์„ ์ƒ์„ฑํ•œ๋‹ค. ์ค‘๋ณต, ์ฒ ์ž ์˜ค๋ฅ˜์— ๋Œ€ํ•ด ๊ฑฑ์ •ํ•  ํ•„์š”๊ฐ€ ์—†๋‹ค.

  • Easier deletion of CSS : ๋ชจ๋“  ์Šคํƒ€์ผ๋ง์ด ํŠน์ • ๊ตฌ์„ฑ ์š”์†Œ์— ์—ฐ๊ฒฐ๋˜์–ด ์žˆ์–ด ๋ช…ํ™•ํ•˜๊ฒŒ ์•Œ ์ˆ˜ ์žˆ๋‹ค. ๊ตฌ์„ฑ ์š”์†Œ๊ฐ€ ์‚ฌ์šฉ๋˜์ง€ ์•Š๊ณ  ์‚ญ์ œ๋˜๋ฉด ์Šคํƒ€์ผ๋„ ์‚ญ์ œ๋œ๋‹ค.

  • Simple dynamic styling : props๋ฅผ ์ „๋‹ฌํ•˜์—ฌ ๋™์ ์œผ๋กœ ์Šคํƒ€์ผ์„ ๋ณ€๊ฒฝํ•  ์ˆ˜ ์žˆ๋‹ค.

  • Painless maintenance : CSS๋ฅผ ์ž‘์„ฑํ•  ํ•„์š”๊ฐ€ ์—†์œผ๋ฏ€๋กœ ์œ ์ง€ ๊ด€๋ฆฌ๊ฐ€ ์‰ฝ๋‹ค.

  • Automatic vendor prefixing : CSS๋ฅผ ํ˜„์žฌ ํ‘œ์ค€์— ๋งž๊ฒŒ ์ž‘์„ฑํ•˜๊ณ  ์Šคํƒ€์ผ ๊ตฌ์„ฑ ์š”์†Œ๊ฐ€ ๋‚˜๋จธ์ง€๋ฅผ ์ฒ˜๋ฆฌํ•˜๋„๋ก ํ•  ์ˆ˜ ์žˆ๋‹ค.

์„ค์น˜

npm i styled-components

npm i -D @types/styled-components @swc/plugin-styled-components

vscode-styled-components extention ์„ค์น˜

.swcrc ์ถ”๊ฐ€

{
	"jsc": {
		"experimental": {
			"plugins": [
				[
					"@swc/plugin-styled-components",
					{
						"displayName": true,
						"ssr": true
					}
				]
			]
		}
	}
}

์‚ฌ์šฉ๋ฒ•

๊ธฐ๋ณธ ์‚ฌ์šฉ๋ฒ•

import styled from 'styled-components';

const Paragraph = styled.p`
    color: #00f;
`;

export default function Greeting() {
    return (
        <Paragraph>Hello, world!</Paragraph>
    );
}
import styled from 'styled-components';

const Paragraph = styled.p`
    color: #00f;

    string {
        color: #f00;
    }
`;

export default function Greeting() {
    return (
        <Paragraph>Hello, world<strong>!</strong></Paragraph>
    );
}

์Šคํƒ€์ผ๋“œ ์ปดํฌ๋„ŒํŠธ์— ๋‹ค๋ฅธ ์Šคํƒ€์ผ๋“œ ์ปดํฌ๋„ŒํŠธ๋ฅผ ์ƒ์†๋ฐ›์•„์„œ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค.

import styled from 'styled-components';

const Paragraph = styled.p`
    color: #00f;

    string {
        color: #f00;
    }
`;

const BigParagraph = styled(Paragraph)`
    font-size: 2rem;
`;

export default function Greeting() {
    return (
        <BigParagraph>Hello, world<strong>!</strong></BigParagraph>
    );
}

Last updated