import {html, Component} from 'htm/preact'; type Props = { class?: string; text: string; url: string; }; export default class ExternalAnchor extends Component { render() { return html` ${this.props.text} `; } }