Update hello_world_plugin.mdx (#197104)

## 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.
This commit is contained in:
Charlotte Alexandra Wilson 2024-10-22 15:58:06 +01:00 committed by GitHub
parent 0055da5f39
commit 2b60d6f481
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {