I am facing issue in specifying flow annotations with destructuring operator like this:
({ className: String, style: Object })
Thanks in advance for help :)
I found fix, it works like this: ({ className, style } : Object)
({ className, style } : Object)
Most helpful comment
I found fix, it works like this:
({ className, style } : Object)