mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
const useDocumentTitle = (title: string) => {
|
|
useEffect(() => {
|
|
document.title = title;
|
|
}, [title]);
|
|
};
|
|
|
|
export default useDocumentTitle;
|