Skip to content

Commit

Permalink
Update hello_world_plugin.mdx (#197104)
Browse files Browse the repository at this point in the history
## Summary

Changed import path for Kibana Core Public imports, previous was not
working. New import path reflects what I found elsewhere in the
codebase, and works.
  • Loading branch information
CAWilson94 authored Oct 22, 2024
1 parent 0055da5 commit 2b60d6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev_docs/getting_started/hello_world_plugin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ And add the following to it:
```ts
import React from 'react';
import ReactDOM from 'react-dom';
import { AppMountParameters, CoreSetup, CoreStart, Plugin } from '../../../src/core/public';
import { AppMountParameters, CoreSetup, CoreStart, Plugin } from '@kbn/core/public';

export class HelloWorldPlugin implements Plugin {
public setup(core: CoreSetup) {
Expand Down

0 comments on commit 2b60d6f

Please sign in to comment.