├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.tsx ├── components │ ├── AddTask.tsx │ ├── MenuBar.tsx │ ├── Stats.tsx │ ├── TaskItem.tsx │ └── TaskList.tsx ├── index.css ├── main.tsx ├── store │ └── useStore.ts ├── types.ts ├── utils │ └── cn.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AddTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/components/AddTask.tsx -------------------------------------------------------------------------------- /src/components/MenuBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/components/MenuBar.tsx -------------------------------------------------------------------------------- /src/components/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/components/Stats.tsx -------------------------------------------------------------------------------- /src/components/TaskItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/components/TaskItem.tsx -------------------------------------------------------------------------------- /src/components/TaskList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/components/TaskList.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/store/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/store/useStore.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/src/utils/cn.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sriram2915/Task-Master/HEAD/vite.config.ts --------------------------------------------------------------------------------