mirror of
https://github.com/outline/outline.git
synced 2026-04-30 06:29:30 -05:00
13 lines
418 B
TypeScript
13 lines
418 B
TypeScript
import * as React from "react";
|
|
import Frame from "../components/Frame";
|
|
import { EmbedProps as Props } from ".";
|
|
|
|
export default function ClickUp(props: Props) {
|
|
return <Frame {...props} src={props.attrs.href} title="ClickUp Embed" />;
|
|
}
|
|
|
|
ClickUp.ENABLED = [
|
|
new RegExp("^https?://share\\.clickup\\.com/[a-z]/[a-z]/(.*)/(.*)$"),
|
|
new RegExp("^https?://sharing\\.clickup\\.com/[0-9]+/[a-z]/[a-z]/(.*)/(.*)$"),
|
|
];
|