Rocky_Mountain_Vending/.pnpm-store/v10/files/69/1c57f355d2ef115ce9f78d4f43bd2f002fae15f9447732100b36dcc2f4bcc4b74f7f6518e466087b0900aa7a7c661b1dbaf2697478e6e0755f76301957108d
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

20 lines
772 B
Text

/**
* HTTPAccessFallbackBoundary is a boundary that catches errors and renders a
* fallback component for HTTP errors.
*
* It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.
*
* e.g. 404
* 404 represents not found, and the fallback component pair contains the component and its styles.
*
*/
import React from 'react';
interface HTTPAccessFallbackBoundaryProps {
notFound?: React.ReactNode;
forbidden?: React.ReactNode;
unauthorized?: React.ReactNode;
children?: React.ReactNode;
missingSlots?: Set<string>;
}
export declare function HTTPAccessFallbackBoundary({ notFound, forbidden, unauthorized, children, }: HTTPAccessFallbackBoundaryProps): import("react/jsx-runtime").JSX.Element;
export {};