0
我想創建一個列組件,我可以重複使用。然後列組件被用作包裝。我怎樣才能做到這一點。目前該列的內容不顯示。創建一個反應組件作爲內容的包裝
React.js
const Col = React.createClass({
render() {
return (
<div className='col'>
</div>
);
}
});
使用其他模塊中:
import Col from ....
...
return(
<Col>
<div>Here goes the content ...</div>
</Col>
)
酷,謝謝! – vuvu