Switch to redux and webpack
This commit is contained in:
parent
b247287075
commit
e389454535
97 changed files with 2722 additions and 2656 deletions
24
client/src/js/reducers/index.js
Normal file
24
client/src/js/reducers/index.js
Normal file
|
@ -0,0 +1,24 @@
|
|||
import { combineReducers } from 'redux';
|
||||
import { routeReducer } from 'redux-simple-router';
|
||||
import channels from './channels';
|
||||
import environment from './environment';
|
||||
import input from './input';
|
||||
import messages from './messages';
|
||||
import privateChats from './privateChats';
|
||||
import search from './search';
|
||||
import servers from './servers';
|
||||
import showMenu from './showMenu';
|
||||
import tab from './tab';
|
||||
|
||||
export default combineReducers({
|
||||
routing: routeReducer,
|
||||
channels,
|
||||
environment,
|
||||
input,
|
||||
messages,
|
||||
privateChats,
|
||||
search,
|
||||
servers,
|
||||
showMenu,
|
||||
tab
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue