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>
19 lines
No EOL
737 B
Text
19 lines
No EOL
737 B
Text
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.MonthsDropdown = MonthsDropdown;
|
|
const react_1 = __importDefault(require("react"));
|
|
const useDayPicker_js_1 = require("../useDayPicker.js");
|
|
/**
|
|
* Render a dropdown to navigate between months in the calendar.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
function MonthsDropdown(props) {
|
|
const { components } = (0, useDayPicker_js_1.useDayPicker)();
|
|
return react_1.default.createElement(components.Dropdown, { ...props });
|
|
}
|
|
//# sourceMappingURL=MonthsDropdown.js.map |