Reputation: 1
./src/component/Form2.js Syntax error: C:/Users/Nikhil/Desktop/project/src/component/Form2.js: Unexpected token (196:27)
194 | <form onSubmit={handleSubmit(onSubmit)}>
195 | <input {...register("firstName")} />
> 196 | <p>{errors.firstName?.message}</p>
| ^
197 |
198 | <input {...register("age")} />
199 | <p>{errors.age?.message}</p>
Upvotes: 0
Views: 647
Reputation: 229
Optional chaining (?.) is a feature introduced in ES2020. Check if it is supported.
Upvotes: 1