UNPKG

react-hook-granth

Version:

A collection of custom React hooks for efficient state management and UI logic.

12 lines (10 loc) 271 B
import { useEffect } from "react"; /** * Set the document title dynamically. * @param {string} title - The title to set for the document. */ export default function useDocumentTitle(title) { useEffect(() => { document.title = title; }, [title]); }