event.key === 'Enter' && add(event.target)} />
todo
{#each todos.filter((t) => !t.done) as todo (todo.id)}
{todo.description}
remove(todo)}>x
{/each}
done
{#each todos.filter((t) => t.done) as todo (todo.id)}
{todo.description}
remove(todo)}>x
{/each}