TorbatYar/frontend/modules/experience/features/componentVersions.tsx
Mortezakoohjani 0d424c500a feat(platform): complete commercial runtime consolidation
Unify commercial runtime ownership across backend and frontend so platform, experience, and hospitality modules use the shared commercial source of truth.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-29 11:11:53 +03:30

23 lines
760 B
TypeScript

"use client";
import { createExperienceListPage } from "@/modules/experience/components/ExperienceListCrudPage";
import { experienceApi } from "@/modules/experience/services/experience-api";
export const ComponentVersionsPage = createExperienceListPage({
title: "نسخه‌های کامپوننت",
breadcrumb: "نسخه‌های کامپوننت",
resourceKey: "componentVersions",
permission: "experience.components.view",
api: experienceApi.componentVersions,
columns: [
{ key: "code", header: "کد" },
{ key: "name", header: "نام" },
{ key: "status", header: "وضعیت", type: "status" },
{ key: "created_at", header: "ایجاد", type: "datetime" },
],
readOnly: true,
});
export default ComponentVersionsPage;