I'm trying to wrap my head around using signals for our app. Should I use nested signals for complex data?
For example, the todos example. What if I don't want to update all todos when a single todo changes? Should I do the following?
const todos = signal([
signal({ text, done }),
signal({ text, done })
])
I'm trying to wrap my head around using signals for our app. Should I use nested signals for complex data?
For example, the todos example. What if I don't want to update all todos when a single todo changes? Should I do the following?