Rocky_Mountain_Vending/.pnpm-store/v10/files/a9/8d735140da1844559b502202ade7b05234c03c815b7bdb48bfff4fe0974987bb4e8c33a0d31c4f745a72c5095f8b3fc2444e9b15be6072e72fb3a837885096
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

17 lines
493 B
Text

import React from 'react';
type PagesDevOverlayErrorBoundaryProps = {
children?: React.ReactNode;
};
type PagesDevOverlayErrorBoundaryState = {
error: Error | null;
};
export declare class PagesDevOverlayErrorBoundary extends React.PureComponent<PagesDevOverlayErrorBoundaryProps, PagesDevOverlayErrorBoundaryState> {
state: {
error: null;
};
static getDerivedStateFromError(error: Error): {
error: Error;
};
render(): React.ReactNode;
}
export {};