import * as React from "react"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; function GoogleCalendar(props: Props) { return ( ); } GoogleCalendar.ENABLED = [ new RegExp("^https?://calendar\\.google\\.com/calendar/embed\\?src=(.*)$"), ]; export default GoogleCalendar;