mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[easy][shared-ux] Fix typos in RedirectAppLinks (#132563)
This commit is contained in:
parent
e2190233d8
commit
2d1ac53300
2 changed files with 5 additions and 5 deletions
|
@ -70,17 +70,17 @@ This is the component is likely the most useful to solutions in Kibana. It assu
|
|||
```tsx
|
||||
import { RedirectAppLinks } from '@kbn/shared-ux-links-redirect-app';
|
||||
|
||||
<RedirectAppLinksProvider currentAppId="appId" navigateToUrl={(url) => { ... }}>
|
||||
<RedirectAppLinks currentAppId="appId" navigateToUrl={(url) => { ... }}>
|
||||
.
|
||||
<a href="/base-path/app/another-app/some-path">Go to another-app</a>
|
||||
.
|
||||
</RedirectAppLinksProvider>
|
||||
</RedirectAppLinks>
|
||||
|
||||
{/* OR */}
|
||||
|
||||
<RedirectAppLinksProvider {...coreStart}>
|
||||
<RedirectAppLinks {...coreStart}>
|
||||
.
|
||||
<a href="/base-path/app/another-app/some-path">Go to another-app</a>
|
||||
.
|
||||
</RedirectAppLinksProvider>
|
||||
</RedirectAppLinks>
|
||||
```
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
|
||||
export { RedirectAppLinks as RedirectAppLinksContainer } from './redirect_app_links';
|
||||
export { RedirectAppLinks as RedirectAppLinksComponent } from './redirect_app_links';
|
||||
export { RedirectAppLinks as RedirectAppLinksComponent } from './redirect_app_links.component';
|
||||
export { RedirectAppLinksKibanaProvider, RedirectAppLinksProvider } from './services';
|
||||
|
||||
import React, { FC } from 'react';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue