From 68d88173d8bf60ef19af5d5ef37a6f8fe0d151eb Mon Sep 17 00:00:00 2001 From: secustor Date: Wed, 22 Oct 2025 23:41:23 +0200 Subject: [PATCH] update example Signed-off-by: secustor --- .../src/devToolsContentBlueprint.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/plugins/devtools-react/src/devToolsContentBlueprint.tsx b/plugins/devtools-react/src/devToolsContentBlueprint.tsx index 9c11916a77..c10d8dade0 100644 --- a/plugins/devtools-react/src/devToolsContentBlueprint.tsx +++ b/plugins/devtools-react/src/devToolsContentBlueprint.tsx @@ -38,12 +38,17 @@ export interface DevToolsContentBlueprintParams { * * @example * ```tsx - * const myDevToolsRoute = DevToolsContentBlueprint.make({ - * params: { - * path: 'my-feature', - * title: 'My Feature', - * loader: () => import('./MyContent').then(m => ({ default: m.MyContent })) - * } + * const myDevToolsContent = DevToolsContentBlueprint.make({ + * { + * params: { + * path: 'my-dev-tools', + * title: 'My DevTools', + * loader: () => + * import('../components/MyDevTools').then(m => + * compatWrapper(), + * ), + * }, + * }, * }); * ``` * @public