Rocky_Mountain_Vending/.pnpm-store/v10/files/1c/0a1a0bbd3af134ed6874c9d000d5122aac41d9c8199f50809b297e4ed3ea480b5c8d5ea75f92a2cd291c689952a5cc0bc7c4afe9a8f2e67139a4f348265ea2
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
340 B
Text

import React, { type HTMLAttributes } from "react";
/**
* Render a container wrapping the month grids.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Months(props: HTMLAttributes<HTMLDivElement>) {
return <div {...props} />;
}
export type MonthsProps = Parameters<typeof Months>[0];