note: Array [| ... |] has to be used when passing down collection of objects as props in ReactComponents
while working with Fable/Feliz i notice that if i need to pass to props a list of objects in js, it only works if i use the array construct in F# , but not regular list construct
fix/workaround
most react libraries work with standard js [ ... ] of props, not FSharpList type, so you can cast using Seq.toArray or just using [| ... |] when you need to pass arrays to JS
Interop with other Fable/Feliz components
ofc if a component relies on FSharpList types, it would not work, so i undertsand this limit and not sure what's the right approach...