Feature/operator rating page

This commit is contained in:
2025-08-16 05:46:56 +00:00
committed by AmirHossein Mahmoodi
parent b3eb851ab0
commit 1671d37993
33 changed files with 1821 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
"use client";
import PageTitle from "@/core/components/PageTitle";
import { Stack } from "@mui/material";
import DataTable from "./DataTable";
const SystemMessagesPage = () => {
return (
<Stack spacing={1}>
<PageTitle title={"پیام های سیستمی"} />
<DataTable />
</Stack>
);
};
export default SystemMessagesPage;