import { Button } from '@sd/ui'; import React from 'react'; import { FallbackProps } from 'react-error-boundary'; export function ErrorFallback({ error, resetErrorBoundary }: FallbackProps) { return (

APP CRASHED

We're past the event horizon...

Error: {error.message}
); }