Commit completed Torbat Pages admin frontend module, BFF proxy, routes, and validation artifacts for official platform deploy. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
417 B
TypeScript
19 lines
417 B
TypeScript
"use client";
|
|
|
|
import { EmptyState } from "@/components/ds";
|
|
|
|
export function ExperienceEmptyState({
|
|
title = "موردی یافت نشد",
|
|
description,
|
|
}: {
|
|
title?: string;
|
|
description?: string;
|
|
}) {
|
|
return (
|
|
<EmptyState
|
|
title={title}
|
|
description={description ?? "هنوز دادهای ثبت نشده یا فیلترها نتیجهای ندارند."}
|
|
/>
|
|
);
|
|
}
|