summaryrefslogtreecommitdiff
path: root/ui/routes/(swatch)/.swatch/LogOut/+page.svelte
blob: 5eebcde305e6177599b736ab000242cc5771429b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
  import EventCapture from '$lib/swatch/event-capture.svelte.js';

  import LogOut from '$lib/components/LogOut.svelte';
  import EventLog from '$lib/components/swatch/EventLog.svelte';

  let capture = $state(new EventCapture());
  const logOut = capture.on('logOut');
</script>

<h1><code>LogOut</code></h1>

<nav><p><a href=".">Back to swatches</a></p></nav>

<h2>rendered</h2>

<div class="component-preview">
  <LogOut {logOut} />
</div>

<h2>events</h2>

<EventLog events={capture.events} clear={capture.clear.bind(capture)} />