mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
17 lines
194 B
Markdown
17 lines
194 B
Markdown
# `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;
|
|
};
|
|
```
|