Is there a way I can change the default static classname for List and/or Grid?
className="sample-classname" just appends to the current classsname :(
here is my sample code
<WindowScroller>
{({ height, width, isScrolling, onChildScroll, scrollTop }) => (
<List
className="sample-classname"
ref={setRef}
autoHeight
height={height}
width={1140}
isScrolling={isScrolling}
onScroll={onChildScroll}
rowCount={data.size}
rowHeight={this.rowHeight}
rowRenderer={this.rowRenderer}
scrollTop={scrollTop}
overscanRowCount={1}
/>
)}
</WindowScroller>