import { WebsitesTable } from './WebsitesTable'; import { DataGrid } from '@/components/common/DataGrid'; import { useUserWebsitesQuery } from '@/components/hooks'; export function WebsitesDataTable({ teamId, allowEdit = true, allowView = true, showActions = true, }: { teamId?: string; allowEdit?: boolean; allowView?: boolean; showActions?: boolean; }) { const queryResult = useUserWebsitesQuery({ teamId }); return ( {({ data }) => ( )} ); }