import { IonCol, IonRouterLink, IonRow } from '@ionic/react'; interface ActionProps { message: string; text: string; link: string; } export const Action = (props: ActionProps): React.JSX.Element => (

{props.message} {' '} {props.text} →

);