mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
13 lines
435 B
TypeScript
13 lines
435 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { FormattedMessage as T, Icon } from '@/components';
|
|
|
|
export default function DashboardErrorBoundary({}) {
|
|
return (
|
|
<div class="dashboard__error-boundary">
|
|
<h1><T id={'sorry_about_that_something_went_wrong'} /></h1>
|
|
<p><T id={'if_the_problem_stuck_please_contact_us_as_soon_as_possible'} /></p>
|
|
<Icon icon="bigcapital" height={30} width={160} />
|
|
</div>
|
|
)
|
|
} |