2023-11-14 00:35:49 +03:00

9 lines
217 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" />;
}