From 0907fb7e75778f72f246339b0ead97e8090d7a5a Mon Sep 17 00:00:00 2001 From: Rodger Jordas Date: Tue, 26 Feb 2019 13:54:57 +0800 Subject: [PATCH] Fix typo --- step1-07/demo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/step1-07/demo/README.md b/step1-07/demo/README.md index 03b1c3b..0222dd5 100644 --- a/step1-07/demo/README.md +++ b/step1-07/demo/README.md @@ -129,7 +129,7 @@ interface TodoListProps { ### Updating TodoApp -Our `TodoApp` doesn't take any props, but it does have state. We can use TypeSscript to define that as well. +Our `TodoApp` doesn't take any props, but it does have state. We can use TypeScript to define that as well. I've already imported `Todos`, and `FilterTypes` into the `TodoApp`, so we just need to add them to our class. We can even skip the 'interface', if we want to, and add them directly to the class.