1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/business-features/dock/README.md
Janne Savolainen 4d2ee16436
Introduce empty Feature package for the dock
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-04-17 11:43:24 +03:00

22 lines
414 B
Markdown

# @k8slens/dock
This package contains stuff related to creating Lens-applications.
# Usage
```bash
$ npm install @k8slens/dock
```
```typescript
import { dockFeature } from "@k8slens/dock";
import { registerFeature } from "@k8slens/feature-core";
import { createContainer } from "@ogre-tools/injectable";
const di = createContainer("some-container");
registerFeature(di, dockFeature);
```
## Extendability