errorBoundary.tsx 176 B

1234567
  1. import React, { ReactNode } from "react";
  2. interface ChildrenProps {
  3. children: ReactNode;
  4. }
  5. export const ErrorBoundary = ({ children }: ChildrenProps) => <>{children}</>;