import { Link } from "@/lib/router"; import { Button } from "@/components/ui/button"; interface MissingPluginTabPlaceholderProps { defaultTabHref: string; defaultTabLabel: string; } export function MissingPluginTabPlaceholder({ defaultTabHref, defaultTabLabel, }: MissingPluginTabPlaceholderProps) { return (

Workspace plugin tab is not available.

); }