TorbatYar/frontend/modules/experience/design-system/ExperienceStatGrid.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

16 lines
440 B
TypeScript

"use client";
import { StatCard } from "@/components/ds";
export type ExperienceStat = { label: string; value: string; hint?: string };
export function ExperienceStatGrid({ stats }: { stats: ExperienceStat[] }) {
return (
<div className="grid gap-4 sm:grid-cols-2 xl:grid-cols-4">
{stats.map((s) => (
<StatCard key={s.label} label={s.label} value={s.value} hint={s.hint} />
))}
</div>
);
}