2023-11-13 23:28:20 +03:00

16 lines
375 B
TypeScript

/* eslint-disable react/no-danger */
/* eslint-disable react/forbid-component-props */
import { Background } from 'ui';
type Props = {
readonly html: string;
};
export function Conditions({ html }: Props) {
return (
<Background className="justify-center">
<div dangerouslySetInnerHTML={{ __html: html }} className="justify-center" />
</Background>
);
}