The codes below will cause the warning: "Each child in a list should have a unique 'key' prop." when I try to render the div element into the page.
<div {...{}} key={"formKey"}>
<input type="text" />
<button>Test</button>
</div>
And when I adjust my codes into the following, the warning won't appear.
<div key={"formKey"} {...{}}>
<input type="text" />
<button>Test</button>
</div>
It seems to be the order of the props that I passed to the div element, and the warning won't appear either when the div element only have at most one sub node. I just can't figure out the reason.
I just want to know the real reason which caused the different situations that I described, I just thouhgt that the order I passed props should never have different results.
I can't reproduce your bug
However it might be because
"formKey"
is a constant string, not a variable different for each of your list element. You code should typically look like this: