import htmlParser from 'html-react-parser' export interface InterestParagraphProps { title: string description: string } export const InterestParagraph: React.FC = (props) => { const { title, description } = props return ( <>

{title}
{htmlParser(description)}

) }