Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamdipankarpaul/todo_app_react_router_redux
https://github.com/iamdipankarpaul/todo_app_react_router_redux
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/iamdipankarpaul/todo_app_react_router_redux
- Owner: iamdipankarpaul
- Created: 2023-12-24T19:02:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-27T06:51:06.000Z (about 1 year ago)
- Last Synced: 2024-11-11T14:10:34.102Z (2 months ago)
- Language: JavaScript
- Homepage: https://todo-app-react-router-redux.vercel.app
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo App, react, react-router-dom, redux-toolkit
## Folder Structure
```bash
# src foldersrc
┣ actions
┃ ┗ logoutAction.js
┣ assets
┃ ┗ add-todo.svg
┣ components
┃ ┣ Intro.jsx
┃ ┣ NavBar.jsx
┃ ┣ TodoForm.jsx
┃ ┣ TodoItem.jsx
┃ ┗ TodoList.jsx
┣ features
┃ ┗ todoSlice.js
┣ layouts
┃ ┗ MainLayout.jsx
┣ pages
┃ ┣ error
┃ ┃ ┣ ErrorPage.jsx
┃ ┃ ┗ NotFoundPage.jsx
┃ ┣ HomePage.jsx
┃ ┣ TodoItemPage.jsx
┃ ┗ TodoListPage.jsx
┣ App.jsx
┣ helperFns.js
┣ index.css
┣ main.jsx
┗ store.js```