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