useDocumentTitle ​
Hook that manages the document title and allows updating it
browser
test coverage
Last changed: last month
Installation ​
Library
CLI
Manual
typescript
import { useDocumentTitle } from '@siberiacancode/reactuse';
Usage ​
typescript
const { value, set } = useDocumentTitle();
Demo ​
Api ​
Parameters
Name | Type | Default | Note |
---|---|---|---|
initialValue? | string | - | The initial title. If not provided, the current document title will be used |
options.restoreOnUnmount? | boolean | - | Restore the previous title on unmount |
Returns
UseDocumentTitleReturn
Type declaration ​
typescript
export interface UseDocumentTitleOptions {
/** Restore the previous title on unmount */
restoreOnUnmount?: boolean;
}
export interface UseDocumentTitleReturn {
/** The current title */
value: string;
/** Function to update the title */
set: (title: string) => void;
}
Source ​
Source • DemoContributors ​
D
H
V