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