I am struggling to display text in a popover in multiple lines for UI reasons. I have tried updating the code but so far, I have not been successful. Any suggestions?
<Popover
anchorEl={target}
open={open}
anchorOrigin={{ horizontal: 'middle', vertical: 'bottom' }}
targetOrigin={{ horizontal: 'left', vertical: 'bottom' }}
onRequestClose={handleRequestClose}
animation={PopoverAnimationVertical}
>
<Menu autoWidth={true}>
<MenuItem style={{ width: '200px', height: '200px' }}>
<p style={{ display: 'flex', flexWrap: 'wrap' }}>
'aslkjflajdsljflskdjflsdfjlsjdfjdfjlasjkfadlsf'
</p>
</MenuItem>
//this does not work....
</Menu>
</Popover>