* Apply Status bar color * useIsTablet hook instead of useSplitView in combination with the constant * Constants clean up
13 lines
362 B
TypeScript
13 lines
362 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import keyMirror from '@utils/key_mirror';
|
|
|
|
const Navigation = keyMirror({
|
|
NAVIGATION_CLOSE_MODAL: null,
|
|
NAVIGATION_HOME: null,
|
|
NAVIGATION_SHOW_OVERLAY: null,
|
|
NAVIGATION_DISMISS_AND_POP_TO_ROOT: null,
|
|
});
|
|
|
|
export default Navigation;
|