mirror of
https://github.com/outline/outline.git
synced 2026-01-06 11:09:55 -06:00
14 lines
342 B
TypeScript
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;
|