mattermost-mobile/app/reducers/views/index.js
Chris Duarte e345ee1e7b Add recently used section (#1136)
* Add recently used section and section icons

* Improve section scrolling indication

* Modify Makefile and use onMomentumScrollEnd

* Make sure top section maintains highlight when scrolled to top

* Sort emojis by startsWith then includes when filtering
2017-11-21 10:20:09 -05:00

30 lines
718 B
JavaScript

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {combineReducers} from 'redux';
import channel from './channel';
import clientUpgrade from './client_upgrade';
import fetchCache from './fetch_cache';
import i18n from './i18n';
import login from './login';
import recentEmojis from './recent_emojis';
import root from './root';
import search from './search';
import selectServer from './select_server';
import team from './team';
import thread from './thread';
export default combineReducers({
channel,
clientUpgrade,
fetchCache,
i18n,
login,
recentEmojis,
root,
search,
selectServer,
team,
thread
});