import { useRouteError } from 'react-router' import { FullPageWrapper } from './FullPageWrapper' export function DefaultRootErrorBoundary() { const error = useRouteError() console.error(error) return (
There was an error rendering this page. Check the browser console for more information.
) }