page Contacts { apis { listContacts GET /api/contacts { response { return data.contacts } } } load server contacts { return await api.listContacts() } seo { title = "Contacts" } view {

Contacts

Every relationship, scoped securely to its owner.

New contact
Customer directory{#if contacts.length}
    {#each contacts as contact}
  • {contact.name}{contact.company || contact.email}{contact.status}
  • {/each}
{/if}{#if !contacts.length}

No contacts yet

Your first customer relationship will appear here.

{/if}
} }