"use client" import { useRef } from "react" import { StickyElementNameEnum } from "@/stores/sticky-position" import MeetingPackageWidget from "@/components/MeetingPackageWidget" import useStickyPosition from "@/hooks/useStickyPosition" import styles from "./stickyMeetingPackageWidget.module.css" interface StickyMeetingPackageWidgetProps { destination?: string } export default function StickyMeetingPackageWidget({ destination, }: StickyMeetingPackageWidgetProps) { const ref = useRef(null) useStickyPosition({ ref, name: StickyElementNameEnum.MEETING_PACKAGE_WIDGET, }) return (
) }