Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Folders hierarchy fix #109

Merged
merged 1 commit into from
Mar 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion step1-05/demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down