Not "books" exactly, but I keep a big list of links to high-quality tutorials and articles on React, Redux, and related topics, at https://github.com/markerikson/react-redux-links . Specifically intended to be a great starting point for anyone trying to learn the ecosystem, as well as a solid source of good info on more advanced topics.
If you really _do_ want some actual books, I have links to several at the end of the "React Tutorials" page in my list, and this recent post lists a number of React books with some short summaries: https://reactdom.com/blog/reactjs-books .
The React docs are good for reference but they don't focus much on offering getting started material or a tutorial for varying audiences at the level of building a full app in React (or React + Redux). The way you combine components and share info across components is really what makes a React app. Personally I don't understand why they don't cover it more, but they have created a nice market opportunity for tutorial content.
Books are great for learning the more academic aspects of programming-- when you're trying to wrap your mind around an unfamiliar concept, a high-quality explanation can be really helpful. When you're trying to pick up a new framework, though, the bigger challenge is usually figuring out where all of the controls are. The best (only?) way to do that is by building a simple project, and looking up what you don't know along the way. I'd advise staying clear of all of the other other popular tools in the React ecosystem (Redux, Immutable, etc...) until you've worked through the basics of how React works on its own. Learn to write messy React code first, then learn the idioms.
- state management
- fetching data
- interactions like search and sort
- pagination
- client-side caching
- ...
3rd edition will be released soon. 2nd edition was released in January, so it's pretty up to date and will stay up to date.