๐ย ****Reference
๐ Chapter
One-way Data Flow (๋จ๋ฐฉํฅ ๋ฐ์ดํฐ ํ๋ฆ)
props
๋ component์ ์
๋ ฅ ๊ฐ์ด๋ค.props
๋ ๋ถ๋ชจ component๋ก๋ถํฐ ์์ component๋ก ์ ๋ฌ๋ ๋ฐ์ดํฐ์ด๋ค.props
๋ ์ฝ๊ธฐ ์ ์ฉ์ด๋ผ๋ ๊ฒ์ ์ฃผ์ํด์ผ ํ๋ค. โ props
๋ ์ด๋ค ๋ฐฉ์์ผ๋ก๋ ์์ ํด์๋ ์๋๋ค.state
๋ฅผ ์ฌ์ฉํด๋ผ.props
๋ ์์ฑ์ ๋ํ๋ด๋ ๋ฐ์ดํฐ์ด๋ค.props
๋ Immutable data ์ฆ, ๋ณํ์ง ์๋ ๋ฐ์ดํฐ์ด๋ค.props
๋ ๋ถ๋ชจ component์์ ์์ component๋ก ์ ๋ฌ๋๋ ๋ฐ์ดํฐ์ด๋ค.
props
๋ ์์ ๋ ์ ์์ผ๋ฉฐ ํ์๋๊ฑฐ๋ ๋ค๋ฅธ ๊ฐ์ ๊ณ์ฐํ๋ ๋ฐ๋ง ์ฌ์ฉ๋๋ค.
state
, props
๊ฐ ์๋ค.state
๊ฐ component ๋ด๋ถ์์ ๊ด๋ฆฌ๋ ์ํ๋ผ๋ฉด props
๋ component ์ธ๋ถ์์ ๋ค์ด์ ๋ด๋ถ UI์ ์ํฅ์ ์ค ์ ์๋ ๊ฒ์ด๋ค.props
๋ณํ์ ๋ฐ๋ผ UI๊ฐ reactiveํ๊ฒ ๋ฐ์ํ๋ค.const Hello = ({ name }) => <>Hello {name}</> // 1 -> ์์
<Hello name="world" /> // 2 -> ๋ถ๋ชจ