Rocky_Mountain_Vending/.pnpm-store/v10/files/99/7436a268b5ddf711185610cb54e7c6f65fd32e9b6c2249d8dcd4db346395ff14b4449c5f2917ca0100f3131a3c2cda6f40f79b6c2e8c5ff7616c5eb84b8f26
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

20 lines
No EOL
466 B
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*/
export const cssQuerySelector = (root, selector) => {
// @ts-expect-error assume element root
return root.querySelector(selector);
};
/**
* @internal
*/
export const cssQuerySelectorAll = function (root, selector) {
// @ts-expect-error assume element root
return root.querySelectorAll(selector);
};
//# sourceMappingURL=CSSSelector.js.map