GitNexus/gitnexus/test/fixtures/lang-resolution/api-e2e-test/components/ErrorBoundary.tsx

3 lines
111 B
TypeScript

export function ErrorBoundary({ children }: { children: React.ReactNode }) {
return <div>{children}</div>;
}