import { shallow } from "zustand/shallow"; import dayjs from "@calcom/dayjs"; import { useBookerStore } from "../store"; export const LargeCalendar = () => { const [setSelectedDate, setSelectedTimeslot] = useBookerStore( (state) => [state.setSelectedDate, state.setSelectedTimeslot], shallow ); return (
Something big is coming...
); };