Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
238 changes: 0 additions & 238 deletions .eslintrc

This file was deleted.

14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**DONE**

## Intro
When you run npm start the web page that comes up may appear familiar. A dashboard is a common type of user interface used to show a variety of information that is important in making decisions. It is usually read only which is perfect for practicing redux reducers. The data is currently being passed to components through props. Change the code to implement redux and remove any passing of props. What we are trying to accomplish with this project is only valuable to the programmer. The end user will see no change in the interface.
If done correctly, the web page should look the same, but no props are passed from any component to any other component.
Expand Down Expand Up @@ -46,13 +48,13 @@ fork, clone, npm install, npm start
* Export the container

### ONLY make these components into Containers
* Tickets (use as example)
* Tickets (use as example) **DONE**
* TransactionPanel
* TopNav
* TasksPanel
* Comments
* Orders
* Tasks
* TopNav **DONE**
* TasksPanel **DONE**
* Comments **DONE**
* Orders **DONE**
* Tasks **DONE**

### Think - Why do the other components not care about the store such that we don't need to make them Containers??

Expand Down
Loading