1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-23 07:14:21 +00:00

🔧 Use <pre> in InstanceDescriptionBox

This commit is contained in:
Steffo 2021-10-06 03:18:59 +02:00 committed by Stefano Pigozzi
parent e6bf8e97c9
commit dbdff02888

View file

@ -30,9 +30,9 @@ export function InstanceDescriptionBox({}: InstanceDescriptionBoxProps): JSX.Ele
<Heading level={3}> <Heading level={3}>
Welcome to {instance.state.details.name}! Welcome to {instance.state.details.name}!
</Heading> </Heading>
<p> <pre>
{instance.state.details.description} {instance.state.details.description}
</p> </pre>
</Box> </Box>
) )
} }