import * as React from "react"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; export default function Scribe(props: Props) { const { matches } = props.attrs; const shareId = matches[1]; return ( ); } Scribe.ENABLED = [/^https?:\/\/scribehow\.com\/shared\/(.*)$/];