mirror of https://github.com/sveltejs/svelte
19 lines
338 B
19 lines
338 B
6 years ago
|
<script>
|
||
|
import { time, elapsed } from './stores.js';
|
||
|
|
||
|
const formatter = new Intl.DateTimeFormat('en', {
|
||
|
hour12: true,
|
||
|
hour: 'numeric',
|
||
|
minute: '2-digit',
|
||
|
second: '2-digit'
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<h1>The time is {formatter.format($time)}</h1>
|
||
|
|
||
|
<p>
|
||
|
This page has been open for
|
||
2 years ago
|
{$elapsed}
|
||
|
{$elapsed === 1 ? 'second' : 'seconds'}
|
||
|
</p>
|