Add manifest.json, icons and install button, flatten client/src
This commit is contained in:
parent
a219e689c1
commit
474afda9c2
105 changed files with 338 additions and 283 deletions
30
client/js/state/index.js
Normal file
30
client/js/state/index.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
import { combineReducers } from 'redux';
|
||||
import app from './app';
|
||||
import channels from './channels';
|
||||
import input from './input';
|
||||
import messages from './messages';
|
||||
import privateChats from './privateChats';
|
||||
import search from './search';
|
||||
import servers from './servers';
|
||||
import settings from './settings';
|
||||
import tab from './tab';
|
||||
import ui from './ui';
|
||||
|
||||
export * from './selectors';
|
||||
export const getRouter = state => state.router;
|
||||
|
||||
export default function createReducer(router) {
|
||||
return combineReducers({
|
||||
router,
|
||||
app,
|
||||
channels,
|
||||
input,
|
||||
messages,
|
||||
privateChats,
|
||||
search,
|
||||
servers,
|
||||
settings,
|
||||
tab,
|
||||
ui
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue