2019-03-10 20:53:01 +01:00
|
|
|
<script>
|
|
|
|
import { time } from './stores.js';
|
|
|
|
|
|
|
|
const formatter = new Intl.DateTimeFormat('en', {
|
|
|
|
hour12: true,
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: '2-digit',
|
|
|
|
second: '2-digit'
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-14 07:50:43 +02:00
|
|
|
<h1>The time is {formatter.format($time)}</h1>
|