todo
{#each todos.filter(t => !t.done) as todo (todo.id)}
{todo.description}
x
{/each}
done
{#each todos.filter(t => t.done) as todo (todo.id)}
{todo.description}
x
{/each}