When using the UIActivityIndicator component, I found a warning about
A props object containing a "key" prop is being spread into JSX:
let props = {key: someKey, style: ..., children: ...};
<Animated(View) {...props} />
React keys must be passed directly to JSX without using spread:....
How do I remove the warning?
When using the UIActivityIndicator component, I found a warning about
A props object containing a "key" prop is being spread into JSX:
let props = {key: someKey, style: ..., children: ...};
<Animated(View) {...props} />
React keys must be passed directly to JSX without using spread:....
How do I remove the warning?