Projects
A list of all the projects in your organsation.
{#each $headerRows as headerRow (headerRow.id)}
{#each headerRow.cells as cell (cell.id)}
{#if props.sort.order === "asc"}
{:else if props.sort.order === "desc"}
{:else if !props.sort.disabled}
{/if}
{#if cell.id === "status"}
{/if}
{/each}
{/each}
{#each $rows as row (row.id)}
{#each row.cells as cell (cell.id)} {@const materialisedCell = cell.render()}
{#if cell.id === "name"}
{:else if cell.id === "status"}
{:else}
{/if}
{/each}
{/each}