import { getAwsServices } from 'api/integrations/aws'; import { REACT_QUERY_KEY } from 'constants/reactQueryKeys'; import { Service } from 'container/CloudIntegrationPage/ServicesSection/types'; import { useQuery, UseQueryResult } from 'react-query'; export function useGetAccountServices( accountId?: string, ): UseQueryResult { return useQuery([REACT_QUERY_KEY.AWS_SERVICES, accountId], () => getAwsServices(accountId), ); }