Rocky_Mountain_Vending/.pnpm-store/v10/files/b1/ff4272e5fee165a400d92faad4b4894edf03f8e8840f325a118e0f82caf38da69ef56af84546b76eedd37a1d63ab8c2ca786016be86bb4ae10fcec499d7b3a
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

13 lines
385 B
Text

// packages/react/use-callback-ref/src/useCallbackRef.tsx
import * as React from "react";
function useCallbackRef(callback) {
const callbackRef = React.useRef(callback);
React.useEffect(() => {
callbackRef.current = callback;
});
return React.useMemo(() => (...args) => callbackRef.current?.(...args), []);
}
export {
useCallbackRef
};
//# sourceMappingURL=index.mjs.map