import React from 'react' interface Props { nameText: string helpText: string helpUrl: string } export const LearnMore: React.FC = ({ nameText, helpText, helpUrl, }: Props) => { return ( <>

{helpText}

To learn more about {nameText}, see{' '} here .

) }