forked from Ivasoft/mattermost-mobile
13 lines
309 B
TypeScript
13 lines
309 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({
|
|
NAVIGATE_TO_TAB: null,
|
|
NAVIGATION_HOME: null,
|
|
NAVIGATION_SHOW_OVERLAY: null,
|
|
});
|
|
|
|
export default Navigation;
|