mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-24 00:51:53 +00:00
3 lines
111 B
TypeScript
3 lines
111 B
TypeScript
export function ErrorBoundary({ children }: { children: React.ReactNode }) {
|
|
return <div>{children}</div>;
|
|
}
|