Resolve #86c24bd8t "Feature/fast react operator "

This commit is contained in:
AmirHossein Mahmoodi
2025-02-27 08:21:05 +00:00
parent 6002b562ad
commit 40eb9fab20
18 changed files with 774 additions and 26 deletions

View File

@@ -0,0 +1,12 @@
import OperatorPage from "@/components/dashboard/fastReact/operator";
import WithPermission from "@/core/middlewares/withPermission";
const Page = () => {
return (
<WithPermission permission_name={["show-fast-react-edarate-shahri"]}>
<OperatorPage />
{/* <ActivityCodeLog activity_code={1137} /> */}
</WithPermission>
);
};
export default Page;

View File

@@ -1,7 +0,0 @@
"use client";
import PageLoading from "@/core/components/PageLoading";
const Loading = () => {
return <PageLoading />;
};
export default Loading;