Documentation-only finish for FN-3087, adding changeset and README updates for the dependency graph plugin and plugin authoring guide. Fusion-Task-Id: FN-3087
7 lines
405 B
TypeScript
7 lines
405 B
TypeScript
import { PluginDashboardViewHost as RegistryPluginDashboardViewHost } from "./pluginViewRegistry";
|
|
import type { PluginDashboardViewContext, PluginTaskView } from "./pluginViewRegistry";
|
|
|
|
export function PluginDashboardViewHost({ taskView, context }: { taskView: PluginTaskView; context?: PluginDashboardViewContext }) {
|
|
return <RegistryPluginDashboardViewHost viewId={taskView} context={context} />;
|
|
}
|