Added ref prop
Added a ref
prop to allow access to the calendar DOM node.
const Component = () => {
const calendarRef = useRef<HTMLElement>(null);
return <ActivityCalendar data={data} ref={calendarRef} />;
}
Added a ref
prop to allow access to the calendar DOM node.
const Component = () => {
const calendarRef = useRef<HTMLElement>(null);
return <ActivityCalendar data={data} ref={calendarRef} />;
}