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

import { ProviderPageClient } from './provider-client';

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

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