React hook - customHook - useDocumentTitle
1. Chưa sử dụng customHook
import {useState, useEffect} from 'react'
export default function DocumentTitle() {
const [count, setCount] = useState(0)
useEffect(() => {
document.title = `Count ${count}`
}, [count])
return (
<button
...
kentrung.hashnode.dev1 min read