import { ReactNode } from 'react' import * as Sentry from '@sentry/react' const ErrorBoundary = ({ children }: { children: ReactNode }) => { return ( (

Something went wrong:

              {error.toString()}
            
{componentStack?.trim()}
)} > {children}
) } export default ErrorBoundary