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