๐ย ****Reference
๐ ****Chapter
Class component
Function component
Client Component
Server Component
Shared Component
Polymorphic Component
Component
- component
- ์ปดํฌ๋ํธ
- ๊ด๋ จ๋ ์ฝ๋ ๋ฉ์ด๋ฆฌ๋ฅผ ๋ชจ์ ํ๋์ ๋
๋ฆฝ๋ ๊ฐ๋
์ผ๋ก ์ถ์ํ ํ๋ ๊ธฐ๋ฒ์ ํ๋ก๊ทธ๋๋ฐ์์ ๊ฐ๋ฐ์์ ์ฌ๊ณ ๋ ฅ์ ๋น์ฝ์ ์ผ๋ก ๋์ฌ ์ค๋ค.
- ์ํ์ UI ์ฝ๋๋ฅผ ์ด๋ฃจ์ด์ง ํ๋ฉด ๊ฐ๋ฐ์์๋ component๋ผ๋ ๊ฐ๋
์ ์ฌ์ฉํด ์ถ์ํ ํ ์ ์๋ค.
- ๋ชจ๋ ์ํ์ UI๋ฅผ ๋ด๊ณ ์๋ค๋ฉด ์ญํ ์ ๋ถ๋ฆฌํด ์์ component๋ก ๋๋๋ ๊ฒ์ด ์ข๋ค. โ ๋ ์ฝ๊ฒ ์ฝํ๊ณ ์์ ํ๊ฒ ์์ ํ ์ ์๊ธฐ ๋๋ฌธ์ด๋ค.
- ์ปค์คํ
์ปดํฌ๋ํธ๋ ๋๋ฌธ์๋ก ์์ํด์ผ ํ๋ค. โ ๋ด์ฅ HTML ์์์ ๊ตฌ๋ณ๋์ด์ผ ํ๊ธฐ ๋๋ฌธ์ด๋ค.
Controlled components์ Uncontrolled components ์ฐจ์ด
- HTML ๋ฌธ์์์ ๋ง์ form ์๋ฆฌ๋จผํธ๋ค(
<select>
,ย <textarea>
,ย <input>
ย ๋ฑ)์ ๊ณ ์ ํ state๋ฅผ ์ ์งํ๋ค.
- ๋น์ ์ด ์ปดํฌ๋ํธ๋ DOM์ ์ด๋ฌํ
input
๋ค์ state์ ๋ํ ์ง์ง ๊ทผ์(source of truth for the state of these inputs)์ผ๋ก ์ทจ๊ธํ๋ค.
- ์ ์ด ์ปดํฌ๋ํธ์์ ๋ด๋ถ state๋ ์๋ฆฌ๋จผํธ์ ๊ฐ(
value
)๋ฅผ ์ถ์ ํ๊ธฐ ์ํด ์ฌ์ฉ๋๋ค.
input
์ ๊ฐ์ด ๋ณ๊ฒฝ๋๋ฉด React๋ input
์ ๋ค์ ๋ ๋๋งํ๋ค.