Added "use client" to ErrorBoundary component.

This commit is contained in:
Mike Cao 2023-12-20 10:42:58 -08:00
parent a75f6679b9
commit 8f9c363e9b
1 changed files with 1 additions and 0 deletions

View File

@ -1,3 +1,4 @@
'use client';
import { ErrorInfo, ReactNode } from 'react';
import { ErrorBoundary as Boundary } from 'react-error-boundary';
import { Button } from 'react-basics';