gpt4 book ai didi

javascript - React.js 如何在另一个组件中使用一个组件?

转载 作者:行者123 更新时间:2023-11-30 15:53:05 26 4
gpt4 key购买 nike

我正在尝试在另一个组件中使用一个组件,就像在 React 中一样...

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'));

但我得到的只是盒子而不是盒子和盒子里的报价。如果有人可以提供帮助,那就太好了。

最佳答案

在您提供的代码中,您根本没有使用 Quotesection

试试这个:

ReactDOM.render(<Quotesection/>, document.getElementById('app'));

关于javascript - React.js 如何在另一个组件中使用一个组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39008573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com