Rocky_Mountain_Vending/.pnpm-store/v10/files/70/1d7ac1ed89b5636d0b0014d5d732c698b665cd612e7d74f3562e9f568df2eb230635a61866f0a52413d235cb9bb912ec0e987053ccf5e3d312fd434fda398e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

13 lines
No EOL
424 B
Text

import React from "react";
import { useDayPicker } from "../useDayPicker.js";
/**
* Render a dropdown to navigate between months in the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function MonthsDropdown(props) {
const { components } = useDayPicker();
return React.createElement(components.Dropdown, { ...props });
}
//# sourceMappingURL=MonthsDropdown.js.map