import * as React from "react"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; export default function Descript(props: Props) { const { matches } = props.attrs; const shareId = matches[1]; return ( ); } Descript.ENABLED = [ new RegExp("^https?://share\\.descript\\.com/view/(\\w+)$"), ];