import type { PluginWidgetProps } from "@paperclipai/plugin-sdk/ui"; const WIDGET_LABEL = "Hello world plugin widget"; /** * Example dashboard widget showing the smallest possible UI contribution. */ export function HelloWorldDashboardWidget({ context }: PluginWidgetProps) { return (
Hello world
This widget was added by @paperclipai/plugin-hello-world-example.
{/* Include host context so authors can see where scoped IDs come from. */}
Company context: {context.companyId}
); }