Bloomca / redux-tiles

Composable way to create less verbose Redux code
https://redux-tiles.js.org/
MIT License
236 stars 10 forks source link

Add fetched field to async data structure. #6

Closed Bloomca closed 7 years ago

Bloomca commented 7 years ago

Currently for async data I use the next structure:

{
  isPending: true,
  data: null,
  error: null,
};

I think that adding fetched will be beneficial for couple of reasons:

Bloomca commented 7 years ago

Done by #15