nexo/apps/mattermost/app/utils/timezone.ts

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();
}