Rocky_Mountain_Vending/.pnpm-store/v10/files/d1/29e85b99bf8632d9443ec37c971f1445a1ffec740c263ecb630f99494bedb0255d4906d5417deda5d758bfcf7dff5f3665253fdb05bf08f61ca23bb0df25c5
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

19 lines
506 B
Text

import React, { type Ref, type HTMLAttributes } from "react";
/**
* Render the root element of the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Root(
props: {
/** Ref for the root element, used when `animate` is `true`. */
rootRef?: Ref<HTMLDivElement>;
} & HTMLAttributes<HTMLDivElement>
) {
const { rootRef, ...rest } = props;
return <div {...rest} ref={rootRef} />;
}
export type RootProps = Parameters<typeof Root>[0];