Philipp Schrader | aa19132 | 2024-04-28 20:23:52 -0700 | [diff] [blame] | 1 | import { ExtensionContext } from "@foxglove/studio"; |
2 | import { initExamplePanel } from "./ExamplePanel"; | ||||
3 | |||||
4 | export function activate(extensionContext: ExtensionContext): void { | ||||
5 | extensionContext.registerPanel({ name: "example-panel", initPanel: initExamplePanel }); | ||||
6 | } |