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
7 lines
331 B
TypeScript
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} />;
|
|
}
|