* 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
30 lines
718 B
JavaScript
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
|
|
});
|