import * as React from "react"; import Frame from "../components/Frame"; import { ImageZoom } from "../components/ImageZoom"; import { EmbedProps as Props } from "."; function InVision({ matches, ...props }: Props) { if (/opal\.invisionapp\.com/.test(props.attrs.href)) { return (
InVision Embed
); } return ; } export default InVision;