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

21 lines
514 B
Text

import React, { type HTMLAttributes } from "react";
import type { CalendarWeek } from "../classes/index.js";
/**
* Render a table row representing a week in the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Week(
props: {
/** The week to render. */
week: CalendarWeek;
} & HTMLAttributes<HTMLTableRowElement>
) {
const { week, ...trProps } = props;
return <tr {...trProps} />;
}
export type WeekProps = Parameters<typeof Week>[0];