import { Puzzle } from 'lucide-react'; import type { AppRegistryMeta } from 'officerdev'; import ExampleRouter from './Router'; // Panels this plugin contributes to the workspace registry. The shell passes them to `seedAppRegistry` // from the generated module — it never imports this file directly, because officerdev is a dependency of // the shell and importing upward would invert that. export const appRegistryMetas: AppRegistryMeta[] = [ { key: 'example-panel', name: 'Example', icon: Puzzle, component: ExampleRouter, availableOnPanel: true }, ];