I am currently utilizing svelte-forms and looking to create an array of fields
The function field() provides a writable store and serves as a convenient way to generate a new form input, acting as your input controller.
Consider the following scenario
<script lang="ts">
let fields = [field("f1","f1",[]), field("f2","f2",[]);
</script>
{#each fields as field}
{$field}
{/each}
How can I utilize the fields array to access any field store?