vkashti / app / admin / profiles / ProfilesPage.tsx
ProfilesPage.tsx
Raw
"use client";

import React from 'react';
import { ProfilesProvider } from './ProfilesProvider';
import ProfileList from './ProfileList';

const ProfilesPage: React.FC = () => {
  return (
    <div className="container mx-auto py-6">
      <h1 className="text-2xl font-bold mb-6">Управление на профили</h1>
      <ProfilesProvider>
        <ProfileList />
      </ProfilesProvider>
    </div>
  );
};

export default ProfilesPage;