Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/0dec3e0c1b96d1acaddf6e125f652cf36c11d3be0549ce0d12895dfc8a65b60829acba727f539757033b9469f60a81def1f6190a8979fcd9425f70d427a92b
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

14 lines
No EOL
391 B
Text

import * as defaultLabels from "../labels/index.js";
/**
* Merges custom labels from the props with the default labels.
*
* @param customLabels The custom labels provided in the DayPicker props.
* @returns The merged labels object.
*/
export function getLabels(customLabels) {
return {
...defaultLabels,
...customLabels
};
}
//# sourceMappingURL=getLabels.js.map