(React)propsの渡し方
1.特定の名称をつけて渡す
親
<Component color=“red” message=”A” />
子
const Component = (props) =>{
const Style = {
color: props.color
};
return <p style=Style> {props.message}</p>;
};
2.props.childrenを使う方法
<Component>A </Component>
コンポーネントで挟んだらprops.childrenとして間の文字Aを渡せる
return <p>{props.children}</p>****
Author And Source
この問題について((React)propsの渡し方), 我々は、より多くの情報をここで見つけました https://zenn.dev/monstera/articles/2b1e03a9408881著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol