File size: 194 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# `useTitle`

React side-effect hook that sets title of the page.


## Usage

```jsx
import {useTitle} from 'react-use';

const Demo = () => {
  useTitle('Hello world!');

  return null;
};
```