๐ Reference
๐ Chapter
children
A component ์ฌ์ด์ B component๊ฐ ์์ ๋, A component์์ B component ๋ด์ฉ์ ๋ณด์ฌ์ฃผ๋ ค๊ณ ์ฌ์ฉํ๋ prop
์ด๋ค.
React์ ๊ฐ๋ ฅํ ํฉ์ฑ(Composition) ๋ชจ๋ธ์ ๊ตฌํํ๊ธฐ ์ํด์๋ children
prop์ ์ฌ์ฉํ๋ค.
์์ 1
export default function Alert ({children}) {
return (
<AlertRoot>
...
<AlertMessage>
{children}
</AlertMessage>
</AlertRoot>
):
}
์์ 2
interface Props {
children: React.ReactNode
}
์์ 3
import classes from "./Card.module.css";
interface Props {
children: React.ReactNode;
}
function Card(props: Props) {
return <div className={classes.card}>{props.children}</div>;
}
export default Card;