Rocky_Mountain_Vending/.pnpm-store/v10/files/13/ae1098715b46d5cb38a5d3b96bc18ebae947b89e59f86796ed8596b8eeed43f9f4df8caaf7dd45f8ad1e2173ea11c4baa534ae79ef4cc3ebfffde01c3202fc
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

16 lines
No EOL
502 B
Text

import React from "react";
/**
* Render a grid cell for a specific day in the calendar.
*
* Handles interaction and focus for the day. If you only need to change the
* content of the day cell, consider swapping the `DayButton` component
* instead.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Day(props) {
const { day, modifiers, ...tdProps } = props;
return React.createElement("td", { ...tdProps });
}
//# sourceMappingURL=Day.js.map