// @flow import * as React from 'react'; import Frame from './components/Frame'; type Props = {| attrs: {| href: string, matches: string[], |}, |}; export default class Abstract extends React.Component { static ENABLED = [ new RegExp('https?://share.(?:go)?abstract.com/(.*)$'), new RegExp('https?://app.(?:go)?abstract.com/(?:share|embed)/(.*)$'), ]; render() { const { matches } = this.props.attrs; const shareId = matches[1]; return ( ); } }