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>
16 lines
No EOL
502 B
Text
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 |