Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/ab9620c3590e65922e6c05c5d563cd3652f7a6386b8fad3eebf238d47c17a1b936841b9d7883e5a521d58c1ad47055022bc3e9a67f5f5261420b422673b289
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

12 lines
No EOL
331 B
Text

import React from "react";
/**
* Render a table row representing a week in the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Week(props) {
const { week, ...trProps } = props;
return React.createElement("tr", { ...trProps });
}
//# sourceMappingURL=Week.js.map