Having an issue with the paragraphs in material-ui components.
The problem arises when the text exceeds the dimensions of the component, causing it to spill over as shown in the image below.
<Grid container wrap="nowrap" css={[borde,{
maxWidth: 400
}]} >
<Grid item xs css={beneficiosTab} >
<Typography
>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper, ante at ultricies tincidunt, est quam sodales dui, vel facilisis felis urna eget diam. Aenean vestibulum nisl velit, quis condimentum odio aliquet a.
</Typography>
</Grid>
</Grid>
Hoping for a solution where the paragraph stays within the boundaries of the container on the screen.