In Svelte, you can just do this:
<label for="title-{task.id}">
<input id="title-{task.id}">
No need to do string interpolation with brackets and backticks.
In Svelte, you can just do this:
<label for="title-{task.id}">
<input id="title-{task.id}">
No need to do string interpolation with brackets and backticks.