chore: initial project import
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
This commit is contained in:
17
app/agent/inbox/resolved/page.tsx
Normal file
17
app/agent/inbox/resolved/page.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import { ShellPage } from "@/components/page-templates";
|
||||
import { TablePlaceholder } from "@/components/placeholders";
|
||||
import { getAgentResolvedHistory } from "@/lib/inbox-ops";
|
||||
|
||||
export default async function AgentResolvedPage() {
|
||||
const rows = await getAgentResolvedHistory();
|
||||
|
||||
return (
|
||||
<ShellPage shell="agent" title="Resolved History" description="Riwayat conversation yang sudah selesai ditangani.">
|
||||
<TablePlaceholder
|
||||
title="Resolved"
|
||||
columns={["Conversation", "Resolved at", "Last action"]}
|
||||
rows={rows.map((item) => [item.contactName, item.resolvedAt, item.lastAction])}
|
||||
/>
|
||||
</ShellPage>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user