Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 399 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 399 Bytes

Redux learning

Theory

Redux - js library for managing application state

  • Database for frontend
  • Centralizes application state
  • Makes data flow transparent and predictable

Reducer - pure function

Action - js object that describes what just happened

Start

  1. json-server --watch db.json
  2. npm start

ToDo

  • write tests for all code
  • make new branch for UI work