UNPKG

next

Version:

The React Framework

6 lines (5 loc) 273 B
import React, { type JSX } from 'react'; import { type ErrorBoundaryProps } from '../error-boundary'; export default function RootErrorBoundary({ children, errorComponent, errorStyles, errorScripts, }: ErrorBoundaryProps & { children: React.ReactNode; }): JSX.Element;