Files
Frontend/src/components/dashboard/reports/CountryVoiceRatingReport/index.jsx
2025-08-11 11:30:35 +03:30

15 lines
387 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import PageTitle from "@/core/components/PageTitle";
import { Stack } from "@mui/material";
import DataTable from "./DataTable";
const CountryVoiceRatingReportPage = () => {
return (
<Stack spacing={1}>
<PageTitle title={"گزارش کیفی استان ها"} />
<DataTable />
</Stack>
);
};
export default CountryVoiceRatingReportPage;