source: imaps-frontend/node_modules/react-use/lib/useFavicon.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 493 bytes
RevLine 
[d565449]1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var react_1 = require("react");
4var useFavicon = function (href) {
5 react_1.useEffect(function () {
6 var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
7 link.type = 'image/x-icon';
8 link.rel = 'shortcut icon';
9 link.href = href;
10 document.getElementsByTagName('head')[0].appendChild(link);
11 }, [href]);
12};
13exports.default = useFavicon;
Note: See TracBrowser for help on using the repository browser.