Rocky_Mountain_Vending/.pnpm-store/v10/files/c0/a39e79ec17d879526277c26ef2b23ce93ac322aceca94afaf76e675c7a2bbc77e4dc7a8c494f75b066249686b3e0a8fe1a489811420ff356b8c9cddae5effe
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

12 lines
No EOL
328 B
Text

import React from "react";
/**
* Render the root element of the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Root(props) {
const { rootRef, ...rest } = props;
return React.createElement("div", { ...rest, ref: rootRef });
}
//# sourceMappingURL=Root.js.map