What is meant by single source of truth in Redux?

The state of the entire application is stored in an object/ state tree within a single place, called “Store”. So all the component’s state are stored in the Store and they receive updates from the Store itself. The single state tree makes it easier to keep track of changes over time and debug or inspect the application. This mechanism is referred as “Single Source of Truth”.