import DataTable from 'components/common/DataTable'; import { useTeamWebsites } from 'components/hooks'; import TeamWebsitesTable from './TeamWebsitesTable'; export function TeamWebsitesDataTable({ teamId, allowEdit = false, }: { teamId: string; allowEdit?: boolean; }) { const queryResult = useTeamWebsites(teamId); return ( {({ data }) => } ); } export default TeamWebsitesDataTable;