16 lines
375 B
TypeScript
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>
|
|
);
|
|
}
|