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