import * as React from "react"; import Frame from "../components/Frame"; import Image from "../components/Img"; import { EmbedProps as Props } from "."; function GoogleForms(props: Props) { return ( } canonicalUrl={props.attrs.href} title="Google Forms" border /> ); } GoogleForms.ENABLED = [ new RegExp("^https?://docs\\.google\\.com/forms/d/(.+)$"), ]; export default GoogleForms;