complete system message

This commit is contained in:
2025-08-11 11:30:35 +03:30
parent 36fa5fc26f
commit 88f89662c6
34 changed files with 6702 additions and 7025 deletions

View File

@@ -0,0 +1,14 @@
import PageTitle from "@/core/components/PageTitle";
import { Stack } from "@mui/material";
import DataTable from "./DataTable";
const CountryKeyPressReportPage = () => {
return (
<Stack spacing={1}>
<PageTitle title={"گزارش تماس ها"} />
<DataTable />
</Stack>
);
};
export default CountryKeyPressReportPage;