'use client';

import { OutboxMonitor, type OutboxMonitorProps } from '@/features/admin-outbox';
import type { Locale } from '@/lib/i18n';

export type OutboxPanelProps = OutboxMonitorProps & { locale: Locale };

export function OutboxPanel({ locale, ...props }: OutboxPanelProps) {
  void locale;
  return <OutboxMonitor {...props} />;
}
