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

{title}
{htmlParser(description)}

) }