{myPresence?.cursor
? `${myPresence.cursor.x} × ${myPresence.cursor.y}`
: 'Move your cursor to broadcast its position to other people in the room.'}
{#if others}
{#each [...others] as { connectionId, presence } (connectionId)}
{#if presence?.cursor}
{/if}
{/each}
{/if}