17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import { ConversationsTable } from "@/components/collections/conversations-table";
|
|
|
|
export default function ConversationsPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold tracking-tight">Conversations</h1>
|
|
<p className="text-muted-foreground">
|
|
Gestion des conversations Cercle GPT
|
|
</p>
|
|
</div>
|
|
|
|
<ConversationsTable />
|
|
</div>
|
|
);
|
|
}
|