UNPKG
@hooks/title
Version:
latest (0.1.0)
0.1.0
0.0.3
0.0.2
0.0.1
React hook to set the document title
@hooks/title
/
esm
/
index.js
7 lines
(6 loc)
•
150 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ useEffect }
from
'react'
;
export
default
function
useTitle
(
title
) {
useEffect
(
() =>
{
document
.
title
= title; }, [title]); }