6 lines
123 B

{#each people as { name: { first: f, last: l } } }
<input bind:value={f}>
<input bind:value={l}>
<p>{f} {l}</p>
{/each}