-
-
Notifications
You must be signed in to change notification settings - Fork 531
Closed
Labels
Description
Hey, when I select date in calendar for example.. June 14th. I do have outside button to set current date, so after click, the calendar will update to the current date but the view will stay on June and doesn't update to current month where selected date is.
- Version: 3.0.0
const [date, setDate] = useState(new Date());
<Calendar onChange={(value) => setDate(value)} value={date} view="month" showFixedNumberOfWeeks />