mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-08-12 09:21:05 +00:00
21 lines
541 B
TypeScript
21 lines
541 B
TypeScript
// Copyright 2017-2026 @pezkuwi/app-calendar authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
|
function DayTime (): React.ReactElement {
|
|
const [now, setNow] = useState(new Date());
|
|
|
|
useEffect((): () => void => {
|
|
const intervalId = setInterval(() => setNow(new Date()), 1000);
|
|
|
|
return (): void => {
|
|
clearInterval(intervalId);
|
|
};
|
|
}, []);
|
|
|
|
return <>{now.toLocaleTimeString().split(':').slice(0, 2).join(':')}</>;
|
|
}
|
|
|
|
export default React.memo(DayTime);
|