Reactjs – React form submitting before submit button is clicked
I have a very simple React application that is exhibiting odd behavior: import { useState } from 'react' export function App(props) { const [ready, setReady] = useState(false) function handleSubmit(e) { e.preventDefault() alert("Submitted!") } return ( <form onSubmit={handleSubmit}> { ready ?…