Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 974 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 974 Bytes

Getting user information with React & Redux store🗑️

A react app with a defined redux boilerplate which is used to store user information.

React React

  • Using axios for getting user information from https://reqres.in/.
  • Semantics-UI for dynamic styling component
  • Loading component from react-bootstrap

(I tried with couple of other APIs before, hence the 'product' naming.)

Optimization analysis:

-tbd-

Using redux-devtools extension✨:

const store = createStore(
  reducers,
  {},
  window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
);

redux/store.js