mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
17 lines
248 B
Markdown
17 lines
248 B
Markdown
# `useFavicon`
|
|
|
|
React side-effect hook sets the favicon of the page.
|
|
|
|
|
|
## Usage
|
|
|
|
```jsx
|
|
import {useFavicon} from 'react-use';
|
|
|
|
const Demo = () => {
|
|
useFavicon('https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico');
|
|
|
|
return null;
|
|
};
|
|
```
|