From 2b60d6f481fa79acfd56e4decb0fc58deaec9e4a Mon Sep 17 00:00:00 2001 From: Charlotte Alexandra Wilson Date: Tue, 22 Oct 2024 15:58:06 +0100 Subject: [PATCH] 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. --- dev_docs/getting_started/hello_world_plugin.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_docs/getting_started/hello_world_plugin.mdx b/dev_docs/getting_started/hello_world_plugin.mdx index 08fd7e4a721c2..29e6944f88150 100644 --- a/dev_docs/getting_started/hello_world_plugin.mdx +++ b/dev_docs/getting_started/hello_world_plugin.mdx @@ -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) {