# 방법1
import "styles.css"
# 방법2
import styles from "styles.module.css"
<div className={styles.className} >
단점: class 명칭이 이상하여 소규모 프로젝트에 적합
# 방법3
- yarn add styled-components
- import styled from "styled-components";
- const List = styled.ul`display: flex;`;
<List>
<Item>
<SLink took="/">Movies</SLink>
</Item>
<Item>
<SLink took="/tv">TV</SLink>
</Item>
<Item>
<SLink took="/search">search</SLink>
</Item>
</List>
'~ 2024.08' 카테고리의 다른 글
[NestJS] Task Scheduling (0) | 2022.05.22 |
---|---|
[TypeORM] update시 @BeforeUpdate가 작동하질 않아 😩 (1) | 2022.03.19 |
20211101 REACT REPORT (0) | 2021.11.01 |
[ React ] 시작전 알면 좋을 Javascript 문법 (0) | 2021.09.30 |
[React.js] LifeCycle (0) | 2021.08.21 |