React Custom Hooks Flashcards
1
Q
What is a React custom hook
A
A custom hook, whatever you need it to be
2
Q
When are custom hooks useful? when are they not required
A
When you’re reusing a hook over and over, when you don’t use a hook
3
Q
what is the syntax for writing a custom hook?
A
use(Name of hook)
4
Q
How do you call a custom hook
A
useHook
5
Q
when do custom hooks execute
A
When you call for them