Files
myeasycms-v2/apps/web/app/admin/organizations/error.tsx
giancarlo bce3479368 Cleanup
2024-03-24 02:23:22 +08:00

22 lines
541 B
TypeScript

'use client';
import { Alert, AlertDescription, AlertTitle } from '@kit/ui/alert';
import { PageBody } from '@/components/app/Page';
function OrganizationsAdminPageError() {
return (
<PageBody>
<Alert variant={'destructive'}>
<AlertTitle>Could not load organizations</AlertTitle>
<AlertDescription>
There was an error loading the organizations. Please check your
console errors.
</AlertDescription>
</Alert>
</PageBody>
);
}
export default OrganizationsAdminPageError;