I would like the page to scroll to top when click Next to next Step
Asked
Active
Viewed 327 times
0
-
have you tried https://stackoverflow.com/a/4210821/5426560 ? – Umer Abbas Sep 10 '21 at 16:28
1 Answers
0
Add window.scrollTo(0, 0);
at event onClick of button:
onClick={() => {setStep((s) => s - 1); window.scrollTo(0, 0);}}

Tomir Schmite Jr.
- 580
- 4
- 17