Is there an opportunity to render an array with map method backwards in DOM structure in ReactJS?

For example, I have several items in an array. I render them with map so they appear layer after layer. In DOM structure it looks like you push elements into the array of a parent node. I want it to render backwards like you use unshift for the parent-node-array (layer-under-layer).

I haven’t found anything specific to solve this, maybe you could help