React Guideline: Forms — Handle form submission properly. Description: Prevent default and handle in submit handler. Do: onSubmit with preventDefault. Don't: onClick on submit button only. Good Example: <form onSubmit={handleSubmit}>. Bad Example: <button onClick={handleSubmit}>. Severity: Medium. Docs: .