From 74b103dcb88b505eca603fa9f8310e9e226e0102 Mon Sep 17 00:00:00 2001 From: Riccardo Erra Date: Sun, 10 Mar 2019 02:06:23 +0000 Subject: [PATCH] Folders hierarchy fix (#109) Was 'components/src/TodoHeader.tsx', based on previous and successive examples and that's incorrect --- step1-05/demo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/step1-05/demo/README.md b/step1-05/demo/README.md index 670a446..673e6a0 100644 --- a/step1-05/demo/README.md +++ b/step1-05/demo/README.md @@ -11,7 +11,7 @@ You can find the HTML for our application in `step1-05/TodoApp.html`. ## TodoHeader -We'll store all of our components inside a `components` folder under `src`. Let's create that now. We'll then start writing the `TodoHeader` in `components/src/TodoHeader.tsx`. The `tsx` file extension tells our editor that this file includes React code written in TypeScript. +We'll store all of our components inside a `components` folder under `src`. Let's create that now. We'll then start writing the `TodoHeader` in `src/components/TodoHeader.tsx`. The `tsx` file extension tells our editor that this file includes React code written in TypeScript. > We'll talk about TypeScript soon, but for now, know that all valid JavaScript is valid TypeScript.