import * as React from "react"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; function Vimeo(props: Props) { const { matches } = props.attrs; const videoId = matches[4]; const hId = matches[5]; return ( ); } Vimeo.ENABLED = [ /(http|https)?:\/\/(www\.)?vimeo\.com\/(?:channels\/(?:\w+\/)?|groups\/([^/]*)\/videos\/|)(\d+)(?:\/|\?)?([\d\w]+)?/, ]; export default Vimeo;