Rocky_Mountain_Vending/.pnpm-store/v10/files/0c/bb967e6864000fc32caf83eda7b24b0ba13b3efedc644b96a2b3292678149db71a294d959c2c9fc75995454cb3e48b7a1591a16b03899cf7c2a9d440525a76
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

16 lines
421 B
Text

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