Rocky_Mountain_Vending/.pnpm-store/v10/files/b5/414d469070d1441288c9a17452ce286c5f1294b9b74804fb8fc086a84ab2248a2b87efd13d4263f25c432daddd45957ad93219964a854f2bc4d66989fe332c
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

18 lines
No EOL
569 B
Text

import * as components from "../components/custom-components.js";
/**
* Merges custom components from the props with the default components.
*
* This function ensures that any custom components provided in the props
* override the default components.
*
* @param customComponents The custom components provided in the DayPicker
* props.
* @returns An object containing the merged components.
*/
export function getComponents(customComponents) {
return {
...components,
...customComponents
};
}
//# sourceMappingURL=getComponents.js.map