Skip to content

Commit

Permalink
Update StagesItem.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
seelentov committed Mar 19, 2024
1 parent 76a6e98 commit c85e476
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Stages/StagesItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ export const StagesItem: FC<IAdvantages> = ({ header, description }) => {
return (
<>
<h3>{header}</h3>
<p>{description}</p>
<div dangerouslySetInnerHTML={{ __html: description }}>

</div>
</>
);
}

0 comments on commit c85e476

Please sign in to comment.