mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-01-09 10:32:12 +00:00
9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
import { combineReducers } from 'redux';
|
|
import accounts from './accounts'
|
|
|
|
const rootReducer = combineReducers({
|
|
accounts
|
|
});
|
|
|
|
export default rootReducer;
|