8 lines
134 B

<script>
export let animalPawsEntries;
</script>
{#each animalPawsEntries as [animal, pawType]}
<p>{animal}: {pawType}</p>
{/each}