Feature/supervisor road observations
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
"use client";
|
||||
import PageLoading from "@/core/components/PageLoading";
|
||||
|
||||
const Loading = () => {
|
||||
return <PageLoading />;
|
||||
};
|
||||
export default Loading;
|
||||
13
src/app/(withAuth)/dashboard/fast-react/supervisor/page.js
Normal file
13
src/app/(withAuth)/dashboard/fast-react/supervisor/page.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import WithPermission from "@/core/middlewares/withPermission";
|
||||
import SupervisorPage from "@/components/dashboard/fastReact/supervisor";
|
||||
import ActivityCodeLog from "@/core/components/ActivityCodeLog";
|
||||
const Page = () => {
|
||||
return (
|
||||
<WithPermission permission_name={["show-fast-react", "show-fast-react-province"]}>
|
||||
<SupervisorPage />
|
||||
<ActivityCodeLog activity_code={1137} />
|
||||
</WithPermission>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
||||
Reference in New Issue
Block a user