import React, { FunctionComponent } from 'react'; export const SubtitleAndParagraph: FunctionComponent<{ subtitle: string; paragraph: string; }> = ({ subtitle, paragraph }) => { return (

{subtitle}

{paragraph}

); };