forked from Ivasoft/mattermost-mobile
* Apply Status bar color * useIsTablet hook instead of useSplitView in combination with the constant * Constants clean up
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const FULL_VERSION = '6.0.0';
|
|
export const MAJOR_VERSION = 0;
|
|
export const MIN_VERSION = 0;
|
|
export const PATCH_VERSION = 0;
|
|
|
|
export default {
|
|
FULL_VERSION,
|
|
MAJOR_VERSION,
|
|
MIN_VERSION,
|
|
PATCH_VERSION,
|
|
};
|