import React, { useEffect, useState } from 'react'; const ProcessCard = ({ numeric, id, title, subtitle, text }) => { const [paragraphs, setParagraphs] = useState([]); const left = (id - 1) % 2 === 0; useEffect(() => { setParagraphs(text); }, [text]); return (
{item.paragraph}
))}