From 121984f6f8c8662ac69dcbb2c3877653cc1e0a79 Mon Sep 17 00:00:00 2001 From: Muescha <184316+muescha@users.noreply.github.com> Date: Wed, 26 Oct 2022 14:11:51 +0200 Subject: [PATCH] chore(docs): Tutorial Part 2 - Fix import (#36825) --- docs/docs/tutorial/part-2/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorial/part-2/index.mdx b/docs/docs/tutorial/part-2/index.mdx index 02a812d69ff00..f505bd6845bb6 100644 --- a/docs/docs/tutorial/part-2/index.mdx +++ b/docs/docs/tutorial/part-2/index.mdx @@ -344,7 +344,7 @@ The code snippets below show an example of how to pass a prop into a component w * When rendering the `Greeting` component, you pass in the `name` prop with a specific value, like `"Megan"`. You could swap in a different value string each time you render the `Greeting` component. ```javascript:title=src/pages/say-hello.js - import { Greeting } from "../components/greeting" // highlight-line + import Greeting from "../components/greeting" // highlight-line // Rendering the component const SayHello = () => {