Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/02242c28ef1e59776418ba45ab753ed281929b7e183cdbc62d3d025cb162b9da08ef1ad77be55131ecd7e64b07868d4dbffa41b98e9011242decf13ef6e853
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

13 lines
360 B
Text

import React, { type HTMLAttributes } from "react";
/**
* Render the navigation dropdowns for the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function DropdownNav(props: HTMLAttributes<HTMLDivElement>) {
return <div {...props} />;
}
export type DropdownNavProps = Parameters<typeof DropdownNav>[0];