import { IonCol, IonRouterLink, IonRow } from "@ionic/react"; interface ComponentProps { message: string; link: string; text: string; } export const Action = (props: ComponentProps) => ( {props.message} {" "} {props.text} → );