I've been playing around with React Material UI Tables and I'm having trouble making the columns auto-expand without wrapping. I tried setting the 'width: auto' property in the
<Table size="small" style={{ width: auto}}>
tag, but it didn't work as expected. I'm also hesitant to set fixed pixel values as it may not be best practice.
Is there a more efficient way to adjust column widths based on percentage or other flexible types? Perhaps there's a way to handle this for individual columns or the entire table at once?