-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathClock.js
30 lines (27 loc) · 871 Bytes
/
Clock.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { useMachine } from '@xstate/react';
import { createContext } from 'react';
import { clockMachine } from './clockMachine';
import { ForeignClock } from './ForeignClock';
export const LocalTimeContext = createContext();
export function Clock() {
const [state, send, service] = useMachine(clockMachine);
const { time } = state.context;
return (
<LocalTimeContext.Provider value={service}>
<div className="clock">
<div className="local">
<h1 className="localTime">
{time.toLocaleTimeString('en-US', {
hour: '2-digit',
minute: '2-digit',
})}
</h1>
<strong className="localDate">{time.toLocaleDateString()}</strong>
</div>
<div className="foreign">
<ForeignClock />
</div>
</div>
</LocalTimeContext.Provider>
);
}