16 lines
414 B
JavaScript
16 lines
414 B
JavaScript
"use client";
|
|
|
|
import PageTitle from "@/core/components/PageTitle";
|
|
import { Stack } from "@mui/material";
|
|
import TaskList from "./TaskList";
|
|
|
|
const GeneralManagerZaminGovComponent = () => {
|
|
return (
|
|
<Stack spacing={1}>
|
|
<PageTitle title={"استعلام حرائم پنجره واحد"} />
|
|
<TaskList />
|
|
</Stack>
|
|
);
|
|
};
|
|
export default GeneralManagerZaminGovComponent;
|