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