Rocky_Mountain_Vending/.pnpm-store/v10/files/ae/925fd53db843a6355635c26377d5cbdcfb1bfd298a69f52095b20e8b6e1888e2c97076a66c2b62bfa8794d8289188f592f4790eac86fb986acdd8f43672b8e
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
340 B
Text

import React, { type SelectHTMLAttributes } from "react";
/**
* Render a `select` element.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Select(props: SelectHTMLAttributes<HTMLSelectElement>) {
return <select {...props} />;
}
export type SelectProps = Parameters<typeof Select>[0];