mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-06 15:53:12 +00:00
add legend explaining sds concepts add store queries for missed messages add history visualization partitioned and ordered by lamport timestamp matchmaking and message sending scenarios add a theme better theme support more than 2 participants
9 lines
202 B
Svelte
9 lines
202 B
Svelte
<script lang="ts">
|
|
import type { Message } from "@waku/sds";
|
|
|
|
const { message }: { message: Message } = $props();
|
|
</script>
|
|
|
|
<div class="message-details">
|
|
<h1>{message.messageId}</h1>
|
|
</div> |