* Apply Status bar color * useIsTablet hook instead of useSplitView in combination with the constant * Constants clean up
16 lines
442 B
TypeScript
16 lines
442 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import keyMirror from '@utils/key_mirror';
|
|
|
|
export default keyMirror({
|
|
ACCOUNT_SELECT_TABLET_VIEW: null,
|
|
CHANNEL_DELETED: null,
|
|
CONFIG_CHANGED: null,
|
|
LEAVE_CHANNEL: null,
|
|
LEAVE_TEAM: null,
|
|
NOTIFICATION_ERROR: null,
|
|
SERVER_LOGOUT: null,
|
|
SERVER_VERSION_CHANGED: null,
|
|
TEAM_LOAD_ERROR: null,
|
|
});
|