type Props = { class?: string; text: string; url: string; }; /** An `` helper component with `target="_blank"` and `rel="noopener"`. */ export function Link(props: Props): TRXComponent { return ( {props.text} ); }