how to add inline style width:calc(100% / var) in reactjs?
Template literals should help.
<div style={{width: `calc(100% / ${yourVariable})`}}></div>
Example https://jsfiddle.net/69z2wepo/81579/
Template literals should help.
<div style={{width: `calc(100% / ${yourVariable})`}}></div>
Example https://jsfiddle.net/69z2wepo/81579/