mirror of
https://github.com/streamich/react-use.git
synced 2026-01-25 14:17:16 +00:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
const useTitle = (title: string) => {
|
|
useEffect(() => {
|
|
document.title = title;
|
|
}, [title]);
|
|
};
|
|
|
|
export default useTitle;
|