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