add content type

This commit is contained in:
Adam 2023-06-16 22:46:05 -04:00
parent eada740a7a
commit e838bd368b

View file

@ -19,6 +19,7 @@ export default function Slingshot(props: { ammo: Ammo }) {
<h1 class="max-6-xs text-3xl text-red-600 font-light uppercase"> <h1 class="max-6-xs text-3xl text-red-600 font-light uppercase">
{props.ammo.title} {props.ammo.title}
</h1> </h1>
<p class="m-2">{props.ammo.content_type}</p>
<div innerHTML={props.ammo.content} /> <div innerHTML={props.ammo.content} />
</main> </main>
) as JSXElement; ) as JSXElement;