vkashti / app / admin / profiles / page.tsx
page.tsx
Raw
import { ProfilesProvider } from './ProfilesProvider';
import ProfileList from './ProfileList';
import { Suspense } from 'react';

export default function ProfilesPage() {
  return (
    <ProfilesProvider>
      <Suspense fallback={<></>}>
        <ProfileList />
      </Suspense>
    </ProfilesProvider>
  );
}