import { Notification, getNotificationHtmlUrl } from "../../../notification"; import { Detail, ActionPanel, Action } from "@raycast/api"; import { LinearProject } from "../types"; import { useMemo } from "react"; interface LinearProjectPreviewProps { notification: Notification; linearProject: LinearProject; } export function LinearProjectPreview({ notification, linearProject }: LinearProjectPreviewProps) { const notificationHtmlUrl = useMemo(() => { return getNotificationHtmlUrl(notification); }, [notification]); return ( } /> ); }