import * as React from "react"; import Frame from "../components/Frame"; import Image from "../components/Img"; import { EmbedProps as Props } from "."; function Grist(props: Props) { return ( } title="Grist Spreadsheet" canonicalUrl={props.attrs.href} border /> ); } Grist.ENABLED = [new RegExp("^https?://([a-z.-]+\\.)?getgrist\\.com/(.+)$")]; Grist.URL_PATH_REGEX = /(.+)/; export default Grist;