0
Как вы можете условно добавить элемент, как у меня внизу? Я хочу только <div className='next-field__connected-wrapper'>
быть в пределах, если верно withFilter
.Условно добавить элемент на основе prop
render: function() {
if (this.props.withFilter) {
return (
<div>
<div className='next-card next-card__section next-card__section--no-bottom-spacing'>
<div className='next-field__connected-wrapper'>
{ this.props.children }
</div>
</div>
</div>
)
} else {
return (
<div>
<div className='next-card next-card__section next-card__section--no-bottom-spacing'>
{ this.props.children }
</div>
</div>
)
}
}