- Move RoadmapsView UI, hooks, and tests from dashboard app into fusion-plugin-roadmap - Replace the built-in roadmaps route/nav wiring with plugin view registration and host rendering - Add bundled plugin view registration bootstrap in dashboard startup - Update roadmap plugin build/test config and add FN-3161 removal changeset Fusion-Task-Id: FN-3161
8 lines
436 B
TypeScript
8 lines
436 B
TypeScript
import { PluginDashboardViewHost as RegistryPluginDashboardViewHost } from "./pluginViewRegistry";
|
|
import type { PluginTaskView } from "./pluginViewRegistry";
|
|
import type { PluginDashboardViewContext } from "./types";
|
|
|
|
export function PluginDashboardViewHost({ taskView, context }: { taskView: PluginTaskView; context?: PluginDashboardViewContext }) {
|
|
return <RegistryPluginDashboardViewHost viewId={taskView} context={context} />;
|
|
}
|