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