how can use props to optimize React re-renders
what pure component in react?
what is error boundery component in react ?
it helps you limit the impact of an error, it allows you to not broke the app by breaking one component, and gives you a place holder to show a message by wrapping it
allows to localize the errors and manage them
useEffect hooks ?
why it doesn’t accept async
why async ?
the return function of effect (clean up) accepts only synchronous function
allowing it causes unintentional side effects or race conditions.