From 1a3a3ef9bbb602f0fdb65ec329094759663b2ea3 Mon Sep 17 00:00:00 2001 From: Sandra Dylus Date: Thu, 4 Jul 2024 07:45:17 +0200 Subject: [PATCH] fix: Correct reference to sandboxed file App.js in challenge (#7010) --- src/content/learn/reusing-logic-with-custom-hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/reusing-logic-with-custom-hooks.md b/src/content/learn/reusing-logic-with-custom-hooks.md index 13a556c7b..67de5e97f 100644 --- a/src/content/learn/reusing-logic-with-custom-hooks.md +++ b/src/content/learn/reusing-logic-with-custom-hooks.md @@ -1899,7 +1899,7 @@ export default function Counter() { } ``` -You'll need to write your custom Hook in `useCounter.js` and import it into the `Counter.js` file. +You'll need to write your custom Hook in `useCounter.js` and import it into the `App.js` file.