Rocky_Mountain_Vending/.pnpm-store/v10/files/c8/c39775401147def5153409a41f4782ae98f11e92818012f6204eef9ae25877bb0a464825267e64958f08bc15de600d8229de8a620eb356da980a633a723342
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
439 B
Text

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