Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local
package-lock.json

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,34 @@
# Todo
## 🚀 Live Demo

Check it out here 👉 [https://todo-rn.netlify.app](https://todo-rn.netlify.app)


## ⚙️ Features

- **Add Tasks**: Quickly add new todos via a simple form.
- **Toggle Complete**: Mark tasks as done/undone with a checkbox.
- **Remove Tasks**: Delete tasks you no longer need.
- **Global State**: Powered by Zustand—no prop drilling.
- **Responsive Design**: Works beautifully from mobile (320px) to desktop.
- **Modern UI**: Soft shadows, smooth hover effects and clean typography.


## 📂 Project Structure

```text
devbyrico-todo-zustand/
├── public/
│ └── index.html # Main HTML file
└── src/
├── components/
│ ├── AddTodo.jsx # Form to add a new task
│ └── TodoList.jsx # Renders list of todos
├── store/
│ └── todoStore.js # Zustand store with add/toggle/remove logic
├── App.jsx # Main layout and component imports
├── App.css # Component-level CSS
├── index.js # ReactDOM entry point
└── index.css # Global resets & base styles
├── package.json # Project metadata & scripts
└── README.md # Project documentation
>>>>>>> 4934926933b6cdd84893c39f8de9336fbb46244d
Loading