// src/app/dashboard/customers/page.tsx
import * as React from 'react';

import { CustomersPageClient } from './customers-client';

export const metadata = {
  title: 'Customers | Dashboard',
};

export default function Page() {
  return <CustomersPageClient />;
}
