countries-query-keys.tsx 429 B

12345678
  1. export const countriesQueryKeys = {
  2. getSlow: (token: string) => ['getSlow', { token }] as const,
  3. setSlow: () => ['setSlow'] as const,
  4. getCountryData: (id: number, token?: string) => ['getCountryData', id, token] as const,
  5. getUsersFromCountry: () => ['getUsersFromCountry'] as const,
  6. getUsersWhoVisitedCountry: () => ['getUsersWhoVisitedCountry'] as const,
  7. getCountryUserData: () => ['getCountryUserData'] as const
  8. };