├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── AddTodoForm.tsx ├── App.tsx ├── TodoList.tsx ├── TodoListItem.css ├── TodoListItem.tsx ├── index.tsx ├── initialTodos.ts ├── react-app-env.d.ts └── types.d.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/AddTodoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/src/AddTodoForm.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/TodoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/src/TodoList.tsx -------------------------------------------------------------------------------- /src/TodoListItem.css: -------------------------------------------------------------------------------- 1 | .complete { 2 | text-decoration: line-through; 3 | } 4 | -------------------------------------------------------------------------------- /src/TodoListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/src/TodoListItem.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/initialTodos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/src/initialTodos.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/react-typescript-todo-app/HEAD/yarn.lock --------------------------------------------------------------------------------