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

Improve readability (#5468)

Signed-off-by: r <ryanrussell@users.noreply.github.com>
This commit is contained in:
Ryan Russell 2022-05-31 07:33:53 -05:00 committed by GitHub
parent e8b337d022
commit fc804f3f4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.

View File

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