Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# Todo App, react, react-router-dom, redux-toolkit

## Folder Structure

```bash
# src folder

src
┣ 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

```