Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/3cb14413646b96dd6a80e4636acfe4ae7f57e9a7f1d3f1ed1966e29f9b27cede25bcad4ea74d23cbe2fb3b6bd1723eec7d142078c3584efed527907d1581f5
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
357 B
Text

import React, { type HTMLAttributes } from "react";
/**
* Render the container for the weeks in the month grid.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Weeks(props: HTMLAttributes<HTMLTableSectionElement>) {
return <tbody {...props} />;
}
export type WeeksProps = Parameters<typeof Weeks>[0];