Seguidores de @{data.usuario.username}
goto(`/${data.usuario.username}`)} >
{#if isLoading}
Cargando...
{:else if data.seguidores.length === 0}
No hay seguidos para mostrar.
{:else}
{#each data.seguidores as follower (follower.id)}
{/each}
{/if} {#if totalPages > 1}
loadPage(currentPage - 1)} disabled={currentPage === 1 || isLoading} >
Página {currentPage} de {totalPages}
loadPage(currentPage + 1)} disabled={currentPage === totalPages || isLoading} >
{/if}