import { Suspense } from 'react';
import { CustomersRegistrations } from '../../../../modules/customers-registrations/components/customersRegistrations/CustomersRegistrations';

export const dynamic = 'force-dynamic';

const CustomersRegistrationsPage = () => {
  return (
    <Suspense fallback={<div className="p-6">Loading customers...</div>}>
      <CustomersRegistrations />
    </Suspense>
  );
};

export default CustomersRegistrationsPage;
