mattermost-mobile/app/constants/navigation.js
enahum e2f3f7b803 project folder structure (#107)
* project folder structure

* Moving store to be called from app folder
2016-12-09 10:34:17 -05:00

14 lines
357 B
JavaScript

// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import keymirror from 'keymirror';
const NavigationTypes = keymirror({
NAVIGATION_PUSH: null,
NAVIGATION_POP: null,
NAVIGATION_JUMP: null,
NAVIGATION_JUMP_TO_INDEX: null,
NAVIGATION_RESET: null
});
export default NavigationTypes;