<script>
import { tick } from 'svelte'
const people = [
{ id: 1, name: "John", email: "john@example.com" },
{ id: 2, name: "Jane", email: "jane@example.com" }
]
let length = "30"
let attendees = [
1, 2
]
let notetaker = 1
let agenda = [
"Next update"
]
async function addTopic(e) {
agenda = [...agenda, null]
await tick()
console.log(e.target.parentElement.parentElement.querySelector(`li.record:nth-child(${agenda.length-1}) input`))
e.target.parentElement.parentElement.querySelector(`li.record:nth-child(${agenda.length}) input`).focus()
}
$: title = agenda.length ? agenda.join(', ') : 'untitled'
$: totalTime = Number(length) * attendees.length
</script>
<h1>Meeting: {title}</h1>
<form>