Hello,

kok nae-ga ha-myun an-dweneun MAGIC...🧚

웹 프로그래밍/공부일지

20211102 리액트 CSS

✿도담도담 2021. 11. 2. 18:38

# 방법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>

 

 

 

'웹 프로그래밍 > 공부일지' 카테고리의 다른 글

Nest.js  (0) 2023.05.23
[React] 리액트 컴포넌트 테스트 환경 설정  (0) 2022.06.28
20211101 REACT REPORT  (0) 2021.11.01
[ React ] 시작전 알면 좋을 Javascript 문법  (0) 2021.09.30
[React.js] LifeCycle  (0) 2021.08.21