Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

useMount #83

Open
mofeisike opened this issue Sep 9, 2021 · 1 comment
Open

useMount #83

mofeisike opened this issue Sep 9, 2021 · 1 comment

Comments

@mofeisike
Copy link

请问,这个useMount自定义的hook的用处是什么,我水平不够,不知道有什么意义
`
import { useEffect } from 'react'

export default function useMount(func) {
useEffect(() => {
typeof func === 'function' && func()
}, [])
}
`

@alvin0216
Copy link
Owner

自定义 hooks,相关资料 https://zh-hans.reactjs.org/docs/hooks-custom.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants