Style updates

This commit is contained in:
Endeavorance 2025-03-21 12:20:51 -04:00
parent a9a979c5f8
commit e7218143ec
18 changed files with 928 additions and 230 deletions

View file

@ -4,5 +4,7 @@ interface HTMLWrapperProps {
}
export function HTML({ html, className }: HTMLWrapperProps) {
return <div className={className} dangerouslySetInnerHTML={{ __html: html }} />;
return (
<div className={className} dangerouslySetInnerHTML={{ __html: html }} />
);
}