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>
17 lines
493 B
Text
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 {};
|