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