A small todo app built with Redux Toolkit via CDN. It stores todos in localStorage so they persist across page reloads.
- Open this folder in VS Code.
- Install the "Live Server" extension (by Ritwick Dey) if you do not have it.
- Open todo.html and click "Go Live" in the status bar.
- The app opens in your browser (usually at http://127.0.0.1:5500).
- todo.html - HTML entry point with import map and script tag.
- todo.js - Redux logic, UI rendering, localStorage persistence.
- todo.css - Styling.
- localStorage is used to save todos under the key "redux-todo-items".
- If you open the HTML file with file://, some browsers may limit localStorage. Use Live Server instead.