import React from 'react'; import CtaAsset from '../Assets/CtaAsset'; type paragraphItemsArgs = { heading: string; content: string; buttonText: string; buttonUrl: string; }; const CallToActionParagraphs = (props: { heading: string; subheading: string; paragraphItems: paragraphItemsArgs[]; }) => { const RightAlignedSection = (props: { item: { heading: string; content: string; buttonText: string; buttonUrl: string; }; }) => { return (
); }; const LeftAlignedSection = (props: { item: { heading: string; content: string; buttonText: string; buttonUrl: string; }; }) => { return (