I'd like to store some formatted text (strong, italic etc) an object and have it parsed in an Astro component. I've done this with react (type: React.ReactNode) and had a react component parse it. Can I do something similar with Astro? What would the type of description be?
const facts = [{
title: 'a fact title'
description: <p>fact text</p>
}]
<ul>
{facts.map(f => {f.title} {f.description})
</ul>