just copy page.js
This commit is contained in:
@@ -0,0 +1,23 @@
|
|||||||
|
import WithPermission from "@/core/middlewares/withPermission";
|
||||||
|
import OperatorPage from "@/components/dashboard/roadMissions/operator";
|
||||||
|
export const metadata = {
|
||||||
|
title: "کارتابل ماموریت",
|
||||||
|
};
|
||||||
|
const Page = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<WithPermission
|
||||||
|
permission_name={[
|
||||||
|
"manage-request-portal-country",
|
||||||
|
"manage-request-portal-province",
|
||||||
|
"manage-request-portal-city",
|
||||||
|
]}
|
||||||
|
>
|
||||||
|
<OperatorPage />
|
||||||
|
{/* <ActivityCodeLog activity_code={1152} /> */}
|
||||||
|
</WithPermission>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Page;
|
||||||
Reference in New Issue
Block a user