1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Improve readability

Signed-off-by: r <ryanrussell@users.noreply.github.com>
This commit is contained in:
r 2022-05-26 17:43:33 -05:00
parent 41d4daded7
commit 0fac2330c3
2 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ Some of the most-important fields include:
} }
``` ```
## Webpack configuation ## Webpack configuration
The following webpack `externals` are provided by `Lens` and must be used (when available) to make sure that the versions used are in sync. The following webpack `externals` are provided by `Lens` and must be used (when available) to make sure that the versions used are in sync.

View File

@ -224,7 +224,7 @@ export default class ExampleExtension extends Renderer.LensExtension {
{ {
id: "bonjour", id: "bonjour",
components: { components: {
Page: () => <ExemplePage extension={this} />, Page: () => <ExamplePage extension={this} />,
}, },
}, },
]; ];
@ -250,7 +250,7 @@ export default class ExampleExtension extends Renderer.LensExtension {
target: { pageId: "bonjour" }, target: { pageId: "bonjour" },
title: "Bonjour le monde", title: "Bonjour le monde",
components: { components: {
Icon: ExempleIcon, Icon: ExampleIcon,
}, },
}, },
]; ];