Using RTK with Nextjs

A straight forward example of using Redux Tool Kit with Nextjs app.redux/hooks.js ⛶import { useDispatch, useSelector, useStore } from "react-redux"; // Use throughout the app instead of plain `useDi...
0 Read More

RTK Query: A Beginner-Friendly Guide

If you've ever built a React app with Redux, you’ve probably experienced the repetitive boilerplate of fetching data — action creators, reducers… and don't forget loading and error states. 😩E...
0 Read More