import React from 'react'; const CTA = (props: { headline: string; body: string; buttonUrl: string; buttonText: string }) => { return (
{props.headline}
{props.body}
); }; export default CTA;