* Added NOTICE.txt * Add creators to intro sentence * Removed react-addons-pure-render-mixin from NOTICE.txt since it's part of react * Copied fbjs keymirror into utils * Renamed deepFreezeAndThrowOnMutation to deep_freeze * Fixed merge conflict
14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import keyMirror from 'service/utils/key_mirror';
|
|
|
|
const NavigationTypes = keyMirror({
|
|
NAVIGATION_PUSH: null,
|
|
NAVIGATION_POP: null,
|
|
NAVIGATION_JUMP: null,
|
|
NAVIGATION_JUMP_TO_INDEX: null,
|
|
NAVIGATION_RESET: null
|
|
});
|
|
|
|
export default NavigationTypes;
|