13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
"use client";
|
||
|
||
import { Suspense } from "react";
|
||
import { CommercialAppsPage } from "@/modules/commercial/features/apps";
|
||
|
||
export default function AppsRoutePage() {
|
||
return (
|
||
<Suspense fallback={<p className="p-8 text-center text-sm text-gray-500">در حال بارگذاری…</p>}>
|
||
<CommercialAppsPage />
|
||
</Suspense>
|
||
);
|
||
}
|