Ship the full Communication portal (real SMS API, feature-locked future channels), BFF proxy, docs, snapshot, and phase handover. Co-authored-by: Cursor <cursoragent@cursor.com>
6 lines
214 B
TypeScript
6 lines
214 B
TypeScript
"use client";
|
|
import { ErrorState } from "@/components/ds";
|
|
export default function Error({ error, reset }: { error: Error; reset: () => void }) {
|
|
return <ErrorState message={error.message} onRetry={reset} />;
|
|
}
|