import type { FunctionalComponent } from 'preact'; import { h } from 'preact'; const EditOnGithub: FunctionalComponent<{ href: string }> = ({ href }) => { return ( Edit this page ); }; export default EditOnGithub;