Comment ajouter une nouvelle ligne à n typographie

//Works for \n \r\n etc..

<Typography
  variant="body1"
  style={{whiteSpace: 'pre-line'}}
>
  {body}
</Typography>
Hungry Hamerkop