1
は私が React.js別のコンポーネントでコンポーネントを使用するにはどうすればよいですか?
var ContentBox = React.createClass({
render: function() {
return (
<div>
<div className="container-fluid">
<div className="box center-block">
{this.props.children}
</div>
</div>
</div>
);
}
});
var Quotesection = React.createClass({
render:function() {
return(
<ContentBox><h1 className="text-center">Example text</h1></ContentBox>
);
}
});
ReactDOM.render(<ContentBox/>, document.getElementById('app'));
感謝を。ですから、私が別のコンポーネントを追加したいのであれば、ReactDOM.renderにその新しく作成されたコンポーネントを呼び出す必要があります。複数のコンポーネントを使用したい場合は、私がそれを実行する正しい方法をやっているのですか? – CodePanda
はい。通常、他のコンポーネントで構成された上位コンポーネントがあります。通常、純粋なhtmlでWebページとは異なります。 – Chris