import { FunctionComponent } from "preact"; type Props = Readonly<{ pluginUrl: string; }>; export const Content: FunctionComponent = ({ pluginUrl }) => { return (
{pluginUrl && }
); };