if for children on body section
This commit is contained in:
@ -18,13 +18,21 @@ class BodySection extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
let children;
|
||||||
|
|
||||||
|
if(this.props.children) {
|
||||||
|
children = (
|
||||||
|
<div className="c-body-section__wrapper">
|
||||||
|
{this.props.children}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section section="body" className={this.props.className}>
|
<Section section="body" className={this.props.className}>
|
||||||
<div className="c-section--style-body__inner">
|
<div className="c-section--style-body__inner">
|
||||||
{ this.props.title }
|
{ this.props.title }
|
||||||
<div className="c-body-section__wrapper">
|
{ children }
|
||||||
{this.props.children}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</Section>
|
</Section>
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user