RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/hooks/useUTCClock.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { useTimezoneTime } from './useTimezoneTime';

export const useUTCClock = (utcOffset: number): string => {
    const time = useTimezoneTime(utcOffset, 10000);
    return `${time} (UTC ${utcOffset})`;
};