├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── addtodo.tsx │ ├── navbar.tsx │ └── todos.tsx ├── index.css ├── main.tsx ├── store │ └── todos.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/addtodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/components/addtodo.tsx -------------------------------------------------------------------------------- /src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/components/todos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/components/todos.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/store/todos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/src/store/todos.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/react_todo_youtube/HEAD/vite.config.ts --------------------------------------------------------------------------------