21 lines
435 B
TypeScript
21 lines
435 B
TypeScript
import * as React from "react";
|
|
import Frame from "./components/Frame";
|
|
import { EmbedProps as Props } from ".";
|
|
|
|
const URL_REGEX = new RegExp("^https://framer.cloud/(.*)$");
|
|
|
|
export default class Framer extends React.Component<Props> {
|
|
static ENABLED = [URL_REGEX];
|
|
|
|
render() {
|
|
return (
|
|
<Frame
|
|
{...this.props}
|
|
src={this.props.attrs.href}
|
|
title="Framer Embed"
|
|
border
|
|
/>
|
|
);
|
|
}
|
|
}
|