import React from 'react'; import { ErrorBoundary } from 'react-error-boundary'; import { useSnackbar } from 'notistack'; function MyFallbackComponent({ error, resetErrorBoundary, }: { error: Error; resetErrorBoundary: () => void; }) { return (
Something went wrong:
{error.message}