Files
outline/shared/editor/embeds/Gliffy.tsx
2022-08-02 01:40:11 -07:00

14 lines
342 B
TypeScript

import * as React from "react";
import Frame from "../components/Frame";
import { EmbedProps as Props } from ".";
function Gliffy(props: Props) {
return (
<Frame {...props} src={props.attrs.href} title="Gliffy Embed" border />
);
}
Gliffy.ENABLED = [new RegExp("https?://go\\.gliffy\\.com/go/share/(.*)$")];
export default Gliffy;