{selectedPerson.name}
{#if open}
{#each people as person (person.id)}
{person.name}
{/each}
{/if}
```
You can also choose to have the `Listbox` merely hide the `ListboxOptions` when the `Listbox` is closed, instead of removing it from the DOM entirely, by using the `unmount` prop. This may be useful for performance reasons if rendering the `ListboxOptions` is expensive.
```svelte