mattermost-mobile/app/constants/screens.ts
2020-11-17 14:20:58 -03:00

16 lines
403 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export const CHANNEL = 'Channel';
export const MAIN_SIDEBAR = 'MainSidebar';
export const SERVER = 'Server';
export const SETTINGS_SIDEBAR = 'SettingsSidebar';
export const THREAD = 'Thread';
export default {
CHANNEL,
MAIN_SIDEBAR,
SERVER,
SETTINGS_SIDEBAR,
THREAD,
};