2023-11-20 14:15:36 +03:00

11 lines
242 B
TypeScript

/* eslint-disable react/no-danger */
type Props = {
readonly html: string;
};
export function Conditions({ html }: Props) {
return (
<div dangerouslySetInnerHTML={{ __html: html }} className="justify-center font-[calibri]" />
);
}