//src\app\(main)\analytics\CostandExpenseReport\page.tsx import { Metadata } from "next"; import { I18nProvider } from "@/i18n"; import Typography from "@mui/material/Typography"; import CostandExpenseReportComponent from "@/components/Report/CostandExpenseReport"; export const metadata: Metadata = { title: "Cost and Expense Report", }; const CostandExpenseReport: React.FC = () => { return ( Cost and Expense Report {/* }> */} ); }; export default CostandExpenseReport;