(React) props 제공 방법

2523 단어 메모지tech
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>****

좋은 웹페이지 즐겨찾기