I’ll help you create a complete Todo List app in React with all the features that required. Here’s a full implementation:
Complete Todo List App
1. Main App Component (App.jsx)
import React, { useState, useEffect } from 'react';
import './App.css';
const App = () => {
const [todos, setTodos] = useState([]);
const [inputValue, setInputValue] = useState('');
const [filter, setFilter] = useState('all'); // 'all', 'active', 'completed'
// Load todos from localStorage on initial render
useEffect(() => {
const savedTodos = localStorage.getItem('todos');
if (savedTodos) {
setTodos(JSON.parse(savedTodos));
}
}, []);
// Save todos to localStorage whenever they change
useEffect(() => {
localStorage.setItem('todos', JSON.stringify(todos));
}, [todos]);
const addTodo = () => {
if (inputValue.trim() === '') return;
const newTodo = {
id: Date.now(),
text: inputValue,
completed: false,
createdAt: new Date().toISOString()
};
setTodos([...todos, newTodo]);
setInputValue('');
};
const deleteTodo = (id) => {
setTodos(todos.filter(todo => todo.id !== id));
};
const toggleComplete = (id) => {
setTodos(todos.map(todo =>
todo.id === id ? { ...todo, completed: !todo.completed } : todo
));
};
const getFilteredTodos = () => {
switch(filter) {
case 'active':
return todos.filter(todo => !todo.completed);
case 'completed':
return todos.filter(todo => todo.completed);
default:
return todos;
}
};
const handleKeyPress = (e) => {
if (e.key === 'Enter') {
addTodo();
}
};
const getStats = () => {
const total = todos.length;
const completed = todos.filter(todo => todo.completed).length;
const active = total - completed;
return { total, completed, active };
};
const stats = getStats();
return (
<div className="app">
<div className="todo-container">
<h1>Todo List</h1>
{/* Add Todo Section */}
<div className="input-section">
<input
type="text"
value={inputValue}
onChange={(e) => setInputValue(e.target.value)}
onKeyPress={handleKeyPress}
placeholder="What needs to be done?"
className="todo-input"
/>
<button onClick={addTodo} className="add-btn">
Add Task
</button>
</div>
{/* Filter Buttons */}
<div className="filter-section">
<button
className={`filter-btn ${filter === 'all' ? 'active' : ''}`}
onClick={() => setFilter('all')}
>
All ({stats.total})
</button>
<button
className={`filter-btn ${filter === 'active' ? 'active' : ''}`}
onClick={() => setFilter('active')}
>
Active ({stats.active})
</button>
<button
className={`filter-btn ${filter === 'completed' ? 'active' : ''}`}
onClick={() => setFilter('completed')}
>
Completed ({stats.completed})
</button>
</div>
{/* Todo List */}
<div className="todo-list">
{getFilteredTodos().length === 0 ? (
<div className="empty-state">
<p>No tasks to display</p>
</div>
) : (
getFilteredTodos().map(todo => (
<TodoItem
key={todo.id}
todo={todo}
onToggle={toggleComplete}
onDelete={deleteTodo}
/>
))
)}
</div>
{/* Stats Footer */}
{todos.length > 0 && (
<div className="stats-footer">
<span>{stats.active} items left</span>
{stats.completed > 0 && (
<button
onClick={() => setTodos(todos.filter(todo => !todo.completed))}
className="clear-btn"
>
Clear completed
</button>
)}
</div>
)}
</div>
</div>
);
};
// Todo Item Component
const TodoItem = ({ todo, onToggle, onDelete }) => {
return (
<div className={`todo-item ${todo.completed ? 'completed' : ''}`}>
<input
type="checkbox"
checked={todo.completed}
onChange={() => onToggle(todo.id)}
className="todo-checkbox"
/>
<span className="todo-text">{todo.text}</span>
<button
onClick={() => onDelete(todo.id)}
className="delete-btn"
>
Delete
</button>
</div>
);
};
export default App;2. CSS Styles (App.css)
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.app {
width: 100%;
max-width: 600px;
}
.todo-container {
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
overflow: hidden;
padding: 30px;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 30px;
font-size: 2.5em;
}
/* Input Section */
.input-section {
display: flex;
gap: 10px;
margin-bottom: 30px;
}
.todo-input {
flex: 1;
padding: 12px 15px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 16px;
transition: all 0.3s ease;
}
.todo-input:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.add-btn {
padding: 12px 24px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
}
.add-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.add-btn:active {
transform: translateY(0);
}
/* Filter Section */
.filter-section {
display: flex;
gap: 10px;
margin-bottom: 25px;
justify-content: center;
flex-wrap: wrap;
}
.filter-btn {
padding: 8px 16px;
background: #f5f5f5;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}
.filter-btn:hover {
background: #e0e0e0;
}
.filter-btn.active {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
/* Todo List */
.todo-list {
margin-bottom: 20px;
max-height: 400px;
overflow-y: auto;
}
.empty-state {
text-align: center;
padding: 40px;
color: #999;
font-size: 16px;
}
.todo-item {
display: flex;
align-items: center;
padding: 15px;
background: #f9f9f9;
border-radius: 10px;
margin-bottom: 10px;
transition: all 0.3s ease;
animation: slideIn 0.3s ease;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateX(-20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.todo-item:hover {
background: #f0f0f0;
transform: translateX(5px);
}
.todo-item.completed {
opacity: 0.7;
}
.todo-item.completed .todo-text {
text-decoration: line-through;
color: #999;
}
.todo-checkbox {
width: 20px;
height: 20px;
margin-right: 15px;
cursor: pointer;
}
.todo-text {
flex: 1;
font-size: 16px;
color: #333;
word-break: break-word;
}
.delete-btn {
padding: 6px 12px;
background: #ff4757;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 12px;
transition: all 0.2s ease;
}
.delete-btn:hover {
background: #ff3838;
transform: scale(1.05);
}
.delete-btn:active {
transform: scale(0.95);
}
/* Stats Footer */
.stats-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 2px solid #f0f0f0;
color: #666;
font-size: 14px;
}
.clear-btn {
padding: 6px 12px;
background: #e0e0e0;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 12px;
transition: all 0.2s ease;
}
.clear-btn:hover {
background: #d0d0d0;
}
/* Scrollbar Styling */
.todo-list::-webkit-scrollbar {
width: 8px;
}
.todo-list::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
.todo-list::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
.todo-list::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Responsive Design */
@media (max-width: 768px) {
.todo-container {
padding: 20px;
}
h1 {
font-size: 2em;
}
.input-section {
flex-direction: column;
}
.add-btn {
width: 100%;
}
.filter-section {
gap: 5px;
}
.filter-btn {
font-size: 12px;
padding: 6px 12px;
}
}Features Implemented:
- Add Todo – Add new tasks with Enter key or button click
- Delete Todo – Remove individual tasks
- Mark Complete – Toggle completion status with checkbox
- Filter Tasks – View All, Active, or Completed tasks
- Todo Status – Visual indicators for completed tasks
- Local Storage – Persists todos between page refreshes
- Task Statistics – Shows counts for all, active, and completed tasks
- Clear Completed – Remove all completed tasks at once
- Responsive Design – Works on mobile and desktop
- Animations – Smooth transitions and animations
To Run the App:
# Create a new React app
npx create-react-app todo-list-app
# Navigate to project folder
cd todo-list-app
# Replace the default files with the code above
# (App.jsx and App.css)
# Start the app
npm startThe app will open at http://localhost:3000
This is a fully functional Todo List app!
