mirror of
https://github.com/diced/zipline.git
synced 2026-07-03 10:54:50 -07:00
12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
import GenericError from './GenericError';
|
|
|
|
export default function RootErrorBoundary(props: Record<string, any>) {
|
|
return (
|
|
<GenericError
|
|
title='Dashboard Client Error'
|
|
message='Something went wrong while loading the dashboard. Please try again later, or report this issue if it persists.'
|
|
details={{ ...props, type: 'root' }}
|
|
/>
|
|
);
|
|
}
|