import { WebsitesTable } from '@/app/(main)/websites/WebsitesTable'; import { DataGrid } from '@/components/common/DataGrid'; import { useUserWebsitesQuery } from '@/components/hooks'; export function UserWebsites({ userId }) { const queryResult = useUserWebsitesQuery({ userId }); return ( {({ data }) => ( )} ); }