aviansh mishra
aviansh mishra

Reputation: 13

Module '"redux"' has no exported member 'combineReducers'

import { combineReducers } from 'redux';

const rootReducer = combineReducers({ }); export default rootReducer;enter code here

Upvotes: 1

Views: 2695

Answers (1)

phry
phry

Reputation: 44076

Do you have a folder called "redux" with an "index.js" in your application? If so, please rename that folder.

Generally, you can find a recommended example file structure in the Redux Style Guide

Upvotes: 5

Related Questions