Rocky_Mountain_Vending/.pnpm-store/v10/files/61/889356b514575e7f8b541758d3633e9356666844976d9ae90c90146fdf9e515ffe19f07b9a26f5849e4b7e211d4930eece148616995241e05d2556ef21af2b
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

24 lines
695 B
Text

import React, { type HTMLAttributes } from "react";
import type { CalendarMonth } from "../classes/CalendarMonth.js";
/**
* Render the grid with the weekday header row and the weeks for a specific
* month.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Month(
props: {
/** The month to display in the grid. */
calendarMonth: CalendarMonth;
/** The index of the month being displayed. */
displayIndex: number;
} & HTMLAttributes<HTMLDivElement>
) {
const { calendarMonth, displayIndex, ...divProps } = props;
return <div {...divProps}>{props.children}</div>;
}
export type MonthProps = Parameters<typeof Month>[0];