index.js 184 B

1234567
  1. "use client";
  2. import InternalAlert from './Alert';
  3. import ErrorBoundary from './ErrorBoundary';
  4. const Alert = InternalAlert;
  5. Alert.ErrorBoundary = ErrorBoundary;
  6. export default Alert;