I am trying to use Reactjs with a kendo splitter. The splitter has a style attribute like
style=\"height: 100%\"
With Reactjs, if I have un
You could also try setting style inline without using a variable, like so:
style
style={{"height" : "100%"}} or,
style={{"height" : "100%"}}
for multiple attributes: style={{"height" : "100%", "width" : "50%"}}
style={{"height" : "100%", "width" : "50%"}}