Rocky_Mountain_Vending/.pnpm-store/v10/files/22/3dee78a214acff630fd7843580d8ec0cedea4e67efa35d9cccff4b9c6a9ce578556cf30a43566ba0493711b1afffc3625f06ea46f202a031907aae0401c7a7
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
364 B
Text

import React, { type TableHTMLAttributes } from "react";
/**
* Render the grid of days for a specific month.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function MonthGrid(props: TableHTMLAttributes<HTMLTableElement>) {
return <table {...props} />;
}
export type MonthGridProps = Parameters<typeof MonthGrid>[0];