// @flow import * as React from "react"; import Image from "components/Image"; import Frame from "./components/Frame"; const URL_REGEX = new RegExp( "^https://docs.google.com/drawings/d/(.*)/(edit|preview)(.*)$" ); type Props = {| attrs: {| href: string, matches: string[], |}, |}; export default class GoogleDrawings extends React.Component { static ENABLED = [URL_REGEX]; render() { return ( } canonicalUrl={this.props.attrs.href.replace("/preview", "/edit")} title="Google Drawings" border /> ); } }