Posted on September 19, 2024 jl.m. By. Amos Ihunna View Count. 0 // src/redux/store.js import { createStore } from 'redux'; import todoReducer from './reducers'; // Create the store and pass the reducer const store = createStore(todoReducer); export default store;