Files
fusion/packages/dashboard/app/plugins/PluginDashboardViewHost.tsx
Fusion d7880c66b0 feat(FN-3157): add plugin dashboard view registry with nav integration
Merged FN-3157 to add a plugin dashboard views system, including a plugin view registry with lazy loading, navigation integration for Header and MobileNavBar, a usePluginDashboardViews hook with cache and refetch support, and tests covering the no-loader path. Also added documentation in `docs/PLUGI

Fusion-Task-Id: FN-3157
2026-05-05 12:14:20 -07:00

7 lines
331 B
TypeScript

import { PluginDashboardViewHost as RegistryPluginDashboardViewHost } from "./pluginViewRegistry";
import type { PluginTaskView } from "./pluginViewRegistry";
export function PluginDashboardViewHost({ taskView }: { taskView: PluginTaskView; context?: unknown }) {
return <RegistryPluginDashboardViewHost viewId={taskView} />;
}