- 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
7 lines
352 B
TypeScript
7 lines
352 B
TypeScript
import type { PluginDashboardViewContext } from "@fusion/dashboard/app/plugins/types";
|
|
import { RoadmapsView } from "./dashboard/RoadmapsView.js";
|
|
|
|
export function RoadmapDashboardView({ context }: { context?: PluginDashboardViewContext }) {
|
|
return <RoadmapsView projectId={context?.projectId} addToast={context?.addToast ?? (() => undefined)} />;
|
|
}
|