Use Reactjs and it needs prev and next buttons.
- By clicking on the prev button it should go previous week
- By clicking on the next button it should go next week
I'm new to Reactjs and I request please anyone helps me out
example
< date-month-year to date-month-year > of a week
Date math is complicated. You can go with something like
MomentorLuxonfor handling this sort of thing. I like date-fns because it abstracts dealing with the native JS Date object, handling all the basics. Here's an example in a React hook.Then use it
This is a really rough example, but should point you where you need to go.