Y
Hacker News
new
|
ask
|
show
|
jobs
by
throwaway290
1139 days ago
If it doesn’t have fragments, how do you implement something equivalent to this when mapping over items and every item has to output multiple roots?
<React.Fragment key={idx}>
1 comments
anton96
1139 days ago
You can import the Fragment component of the React package or stack them directly, it works too. Normally, the empty bracket syntax should work, they have a few issues closed and open that talk about it in their repo.
link
throwaway290
1138 days ago
Thanks! Interesting stuff
link