import * as React from "react"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; function Vimeo({ matches, ...props }: Props) { const videoId = matches[4]; const hId = matches[5]; return ( ); } export default Vimeo;