Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified

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;
};