Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/38b659107f8dcb5a65d8177bc45f2055ee4b7c658bbe5ff1dcffcac41c48f818827d00e304090887bb0bcfbcecaebbe5b77af40cacaf97bbd8e280af2845df
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
530 B
Text

'use client';
import { useEffect, useTransition } from 'react';
import { dispatcher } from 'next/dist/compiled/next-devtools';
export const useAppDevRenderingIndicator = ()=>{
const [isPending, startTransition] = useTransition();
useEffect(()=>{
if (isPending) {
dispatcher.renderingIndicatorShow();
} else {
dispatcher.renderingIndicatorHide();
}
}, [
isPending
]);
return startTransition;
};
//# sourceMappingURL=use-app-dev-rendering-indicator.js.map