import * as React from "react"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; export default function Valtown(props: Props) { const { matches } = props.attrs; const valId = matches[1]; return ( ); } Valtown.ENABLED = [/^https?:\/\/(?:www.)?val\.town\/(?:v|embed)\/(.*)$/];