mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
29 lines
626 B
TypeScript
29 lines
626 B
TypeScript
import { LensRendererExtension } from "@k8slens/extensions";
|
|
import { ExampleIcon, ExamplePage, exampleNameUrlParam } from "./page";
|
|
import React from "react";
|
|
|
|
export default class ExampleExtension extends LensRendererExtension {
|
|
clusterPages = [
|
|
{
|
|
id: "example",
|
|
title: "Example Extension",
|
|
components: {
|
|
Page: () => <ExamplePage extension={this}/>,
|
|
},
|
|
params: [
|
|
exampleNameUrlParam,
|
|
]
|
|
}
|
|
];
|
|
|
|
clusterPageMenus = [
|
|
{
|
|
target: { pageId: "example" },
|
|
title: "Example Extension",
|
|
components: {
|
|
Icon: ExampleIcon,
|
|
}
|
|
}
|
|
];
|
|
}
|