Skip to content

Instantly share code, notes, and snippets.

@LukeSmetham
Created September 24, 2019 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LukeSmetham/89ef36a194469f1d6636213041e37acf to your computer and use it in GitHub Desktop.
Save LukeSmetham/89ef36a194469f1d6636213041e37acf to your computer and use it in GitHub Desktop.
import { combineReducers } from 'redux';
import { reducer as voxeet } from '@voxeet/react-components';
import auth from 'data/auth/reducer';
import chat from 'data/chat/reducer';
export default () =>
combineReducers({
auth,
chat,
voxeet,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment