Hey, currently trying to make my cells work with multi-line text (i.e. respect whitespace pre-wrap).
I can't figure out how to do that. Here's the code I'm trying, but it's not working.
Is there a prop I can enable on the spreadsheet component that allows my cells to have multi-line text?
<Spreadsheet
data={data}
onChange={handleDataChange}
onBlur={handleBlur}
columnLabels={columnLabels}
className='!whitespace-pre'
hideRowIndicators={true}
/>