mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
194 B
194 B
useTitle
React side-effect hook that sets title of the page.
Usage
import {useTitle} from 'react-use';
const Demo = () => {
useTitle('Hello world!');
return null;
};