Is there a way to include !important in the hidden property within React JSX inline style?
I'm attempting to conceal the scroll bar in an Ag Grid table component as it is displayed by default.
I've already attempted:
ref={(node) => {
if (node) {
node.style.setProperty('overflow-x', 'hidden', 'important');
}
}}
however, it doesn't seem to be effective