kgroad-frontend2/src/app/profile/my-reports/page.tsx
2024-02-19 15:14:19 +06:00

17 lines
335 B
TypeScript

import ProfileTable from "@/widgets/ProfileTable/ProfileTable";
import React from "react";
const MyReports = async ({
searchParams,
}: {
searchParams: { ["страница-обращений"]: string };
}) => {
return (
<div>
<ProfileTable searchParams={searchParams} />
</div>
);
};
export default MyReports;