Files
scrap/node_modules/next/dist/client/components/not-found-boundary.d.ts
2024-09-24 03:52:46 +00:00

10 lines
360 B
TypeScript

import React from 'react';
interface NotFoundBoundaryProps {
notFound?: React.ReactNode;
notFoundStyles?: React.ReactNode;
asNotFound?: boolean;
children: React.ReactNode;
}
export declare function NotFoundBoundary({ notFound, notFoundStyles, asNotFound, children, }: NotFoundBoundaryProps): import("react/jsx-runtime").JSX.Element;
export {};