1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 14:54:22 +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 92e2372051
commit 7713a55919

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>
) )
} }