/Todo

React-Redux-MaterialUI

Todo

React-Redux-MaterialUI


create app yarn create react-app todo

cd todo

start app yarn start

add material-ui/core yarn add @material-ui/core

add material-ui-/icons yarn add @material-ui/icons

add redux yarn add redux

add react-redux yarn add react-redux


Folder Structure

todo
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── store
│ ├──actions

│ │ ├── actionTypes.js
│ │ └── index.js
│ └──reducers
│ └── index.js
├── Todo
│ ├── Form.js
│ ├── Header.js
│ ├── index.js
│ └── TodoList.js
├── App.css
├── App.js
├── App.test.js
├── index.css
├── index.js
├── logo.svg
└── serviceWorker.js
└── setupTests.js