0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/documentation/examples/07-stores/02-readable-stores/App.svelte

13 lines
237 B
Svelte
Raw Normal View History

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>