Fork me on GitHub
#reagent
<
2021-11-22
>
Noah Bogart21:11:06

i want to return multiple [:p] elements from a component function, but i don’t want them to be nested within a new [:div]. i’m using [:<>] like so: [:<> [:p "stuff 1"] [:p "stuff 2"]]. Is that an okay usage of [:<>]?

👍 2
p-himik22:11:39

Yes, and it's the intended one.

👍 2
Ryan15:11:26

oh man, I didn't even think about using (into ...) with [:<> ..