Posted on

jl.m.

// 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;