Mark LeMerise
Mark LeMerise
Just curious, why not just pass the POJOs directly to `RootStore.create`? ```ts const jamon = { id: "jamon", firstName: "Jamon", lastName: "Holmgren", }; const tweet = { id: "1", author:...
The @dragonbest520 solution works. Thanks! I'm wondering if it would be worth it to add this little tip to the docs since I'm sure it's a fairly common use case.
I think I was able to create [a reproducible example](https://github.com/MarkLeMerise/solidjs-router-path-undefined-nested-route). I do apologize as it's not perfectly minimal as it was adapted from a real-world usage that I've been troubleshooting...