Add manifest.json, icons and install button, flatten client/src

This commit is contained in:
Ken-Håvard Lieng 2018-11-10 12:18:45 +01:00
parent a219e689c1
commit 474afda9c2
105 changed files with 338 additions and 283 deletions

30
client/js/state/index.js Normal file
View 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
});
}