反応コンポーネントが反応でアプリ全体を管理しています。次のようになります。
var Page = React.createClass({
displayName: 'Page',
render: function() {
return (
React.DOM.div(null
/*, stuff here ..*/
)
);
}
});
そしてhtmlは次のようになります
<body id="content"></body>
そして、私はそれを次のようにレンダリングします:
React.renderComponent(Page(null), document.getElementById('content'));
しかし、代わりに、タグ全体を管理するように反応したいbody
ので、ネストされた冗長なものはありませんdiv
。どうすればそのようなものをレンダリングできますか?