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>
13 lines
No EOL
402 B
Text
13 lines
No EOL
402 B
Text
import React from "react";
|
|
/**
|
|
* Render the grid with the weekday header row and the weeks for a specific
|
|
* month.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
export function Month(props) {
|
|
const { calendarMonth, displayIndex, ...divProps } = props;
|
|
return React.createElement("div", { ...divProps }, props.children);
|
|
}
|
|
//# sourceMappingURL=Month.js.map |