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