TorbatYar/frontend/modules/experience/design-system/ExperienceEmptyState.tsx
Mortezakoohjani 0eec9f729b feat(experience): deploy Experience frontend FE-11.0-11.5 portal
Commit completed Torbat Pages admin frontend module, BFF proxy, routes, and validation artifacts for official platform deploy.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-27 21:01:50 +03:30

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 ?? "هنوز داده‌ای ثبت نشده یا فیلترها نتیجه‌ای ندارند."}
/>
);
}