Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/ea30b4b39376921b6d9d7203f588a28671c64a5f2d98f0134bbdeb95a721f9b156b948a310d493ea2833230542fead2240831bffb0167d9f08fd35fe8715d2
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

15 lines
390 B
Text

import React, { type ThHTMLAttributes } from "react";
/**
* Render the header cell for the week numbers column.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function WeekNumberHeader(
props: ThHTMLAttributes<HTMLTableCellElement>
) {
return <th {...props} />;
}
export type WeekNumberHeaderProps = Parameters<typeof WeekNumberHeader>[0];