Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/4c3665e270b21742043d79bceb0f27de9670b6ba9ae8f4bbfbee4b3e1040c0341576293f1c9c0a3d6c518d6cb6ab7ebea1edbcd75a185e130b78711156b5d8
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

9 lines
No EOL
312 B
Text

export function hasLoadingComponentInTree(tree) {
const [, parallelRoutes, { loading }] = tree;
if (loading) {
return true;
}
return Object.values(parallelRoutes).some((parallelRoute)=>hasLoadingComponentInTree(parallelRoute));
}
//# sourceMappingURL=has-loading-component-in-tree.js.map