useFavicon
October 27, 2018 ยท View on GitHub
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;
};