File size: 173 Bytes
1e92f2d |
1 2 3 4 5 6 |
import { QueryKey } from '@tanstack/react-query';
export function domainForwardingQueryKey( domainName: string ): QueryKey {
return [ 'domain-forwarding', domainName ];
}
|
1e92f2d |
1 2 3 4 5 6 |
import { QueryKey } from '@tanstack/react-query';
export function domainForwardingQueryKey( domainName: string ): QueryKey {
return [ 'domain-forwarding', domainName ];
}
|