{$i18n.t('Archived Chats')}

{#if chats.length > 0}
{#each chats as chat} {/each}
{$i18n.t('Name')} {$i18n.t('Created At')}
{chat.title}
{dayjs(chat.created_at * 1000).format($i18n.t('MMMM DD, YYYY HH:mm'))}
{:else}
You have no archived conversations.
{/if}