Fork me on GitHub
#cljsrn
<
2019-10-08
>
Oliver George04:10:33

@titov one other tip. I use this pattern (into [:view {}] (for [x (range 10)] [text {} (str x)])). That way the generated view doesn't have a list as a child. React (reagent?) handles that but sometimes you get console warnings that "children should have unique keys".

Maksym08:10:43

Thank you for the tip!