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.