Создание веса шрифта жирным шрифтом путем прохождения значения в React.js
<span
id="textSpan"
style={ this.state.checkboxState ? { fontWeight: 'normal' } : { fontWeight: 'bold' } }
>
{ this.props.text }
</span>
Healthy Hyena