Home > @uniformdev/mesh-sdk-react > useRequestHeader
useRequestHeader() function
Hook to make it simple to read and write a specific request header by name, instead of supporting multiple values in an array like native dispatch.
NOTE: if multiple values are added for the named header, this hook will bind to the FIRST instance of the header and leave the other values alone.
Signature:
declare function useRequestHeader(headerName: string): {
value: string;
update: (value: string) => void;
};
Parameters
Parameter | Type | Description |
---|---|---|
headerName | string |
Returns:
{ value: string; update: (value: string) => void; }