mattermost-mobile/app/utils/timezone.ts
2024-01-30 13:22:55 +01:00

8 lines
231 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {getTimeZone} from 'react-native-localize';
export function getDeviceTimezone() {
return getTimeZone();
}