From 6b69b0164c2964086cc9101ff7010aadb5fc4e87 Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Sun, 3 Mar 2019 21:35:32 -0800 Subject: [PATCH] readme cleanup --- index.html | 6 +- step1-05/demo/README.md | 2 +- step1-05/exercise/README.md | 10 ++- step1-05/exercise/src/App.tsx | 4 - .../exercise/src/components/TodoFooter.tsx | 9 --- step1-05/exercise/src/components/TodoList.tsx | 7 -- step1-05/final/index.html | 9 --- step1-05/final/src/TodoApp.tsx | 16 ---- step1-05/final/src/components/TodoFooter.tsx | 12 --- step1-05/final/src/components/TodoHeader.tsx | 20 ----- step1-05/final/src/components/TodoList.tsx | 15 ---- .../final/src/components/TodoListItem.tsx | 13 ---- step1-05/final/src/index.tsx | 4 - step1-05/final/src/style.css | 49 ------------- step1-06/demo/README.md | 73 ++++++++----------- step1-06/demo/src/components/TodoList.tsx | 9 +-- step1-06/exercise/src/components/TodoList.tsx | 3 +- step1-06/final/index.html | 9 --- step1-06/final/src/TodoApp.tsx | 41 ----------- step1-06/final/src/components/TodoFooter.tsx | 13 ---- step1-06/final/src/components/TodoHeader.tsx | 35 --------- step1-06/final/src/components/TodoList.tsx | 19 ----- .../final/src/components/TodoListItem.tsx | 15 ---- step1-06/final/src/index.tsx | 4 - step1-06/final/src/style.css | 49 ------------- step1-07/demo/README.md | 22 ++---- step1-07/demo/src/TodoApp.tsx | 7 +- step1-07/demo/src/TodoApp.types.ts | 2 + step1-07/demo/src/components/TodoList.tsx | 1 + step1-07/exercise/README.md | 20 +++-- step1-07/exercise/src/TodoApp.types.ts | 2 + .../exercise/src/components/TodoHeader.tsx | 5 ++ step1-07/exercise/src/components/TodoList.tsx | 1 + 33 files changed, 80 insertions(+), 426 deletions(-) delete mode 100644 step1-05/exercise/src/components/TodoFooter.tsx delete mode 100644 step1-05/exercise/src/components/TodoList.tsx delete mode 100644 step1-05/final/index.html delete mode 100644 step1-05/final/src/TodoApp.tsx delete mode 100644 step1-05/final/src/components/TodoFooter.tsx delete mode 100644 step1-05/final/src/components/TodoHeader.tsx delete mode 100644 step1-05/final/src/components/TodoList.tsx delete mode 100644 step1-05/final/src/components/TodoListItem.tsx delete mode 100644 step1-05/final/src/index.tsx delete mode 100644 step1-05/final/src/style.css delete mode 100644 step1-06/final/index.html delete mode 100644 step1-06/final/src/TodoApp.tsx delete mode 100644 step1-06/final/src/components/TodoFooter.tsx delete mode 100644 step1-06/final/src/components/TodoHeader.tsx delete mode 100644 step1-06/final/src/components/TodoList.tsx delete mode 100644 step1-06/final/src/components/TodoListItem.tsx delete mode 100644 step1-06/final/src/index.tsx delete mode 100644 step1-06/final/src/style.css diff --git a/index.html b/index.html index f19aa5c..5007546 100644 --- a/index.html +++ b/index.html @@ -53,8 +53,7 @@ @@ -62,8 +61,7 @@ diff --git a/step1-05/demo/README.md b/step1-05/demo/README.md index cbbe127..d4e49fa 100644 --- a/step1-05/demo/README.md +++ b/step1-05/demo/README.md @@ -1,4 +1,4 @@ -# Building a Static Page +# Step 1-05: Demo Building a Static Page To start off our todo application we are going to follow the steps outlined in [Thinking in React](https://reactjs.org/docs/thinking-in-react.html). The first step of the process is to break our application into a component hierarchy. For this app, we're going to keep it simple and just use four parts. diff --git a/step1-05/exercise/README.md b/step1-05/exercise/README.md index 4b9bed1..3e7f0c9 100644 --- a/step1-05/exercise/README.md +++ b/step1-05/exercise/README.md @@ -1,12 +1,16 @@ -## Exercise +# Step 1-06 Exercise ### TodoFooter -1. Add a TodoFooter component, copying over the `