Consider the following React component… function Counter(pro…
Consider the following React component… function Counter(props) { let count = 0; function incr() { count = count + 1; } return The count is {count} Press Me! } Suppose that the “Press Me!” button is pressed twice in a row in quick succession, what will be displayed to the screen?