Rocky_Mountain_Vending/.pnpm-store/v10/files/6a/d9e50bca7c764631e79ab4b4c29e618630477282d6a7bc9131d2d1870791b35b1e2cf7cc0fc464d45055f791e68c67d4fa3ef2b22169474601c47ee96d3c02
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
421 B
Text

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