redux thunk is a package
Redux Toolkit is a package that makes it simpler and easier to write Redux logic. Not only does it provide utilities to simplify common tasks like creating actions and reducers, but it also helps to organize them into a "slice" of the state. This makes it easier to manage the application's state and keeps the codebase cleaner. Additionally, the Redux Toolkit comes with helpful developer tools, such as the Redux DevTools extension, which can be used to inspect the state of the application at any given time. This is incredibly useful for debugging and can help to identify any issues quickly and efficiently.
.