Introduction to Custom Hooks
Let's learn what it takes to create a custom React Hook

Search for a command to run...
Articles tagged with #reacthooks
Let's learn what it takes to create a custom React Hook

This blog post continues the series about React Hooks. It covers one of additional hooks in React - useMemo(). What is useMemo()? useMemo() is JavaScript function, which returns a memoized value. What kind of value is that? In computing, memoization ...

This blog post continues the series about React Hooks. It covers one of additional hooks in React - useRef(). What is useRef()? useRef() is JavaScript function, which creates and returns a mutable JavaScript object. This hook accepts some value and ...

This blog post continues the series about React Hooks. It covers one of additional hooks in React - useReducer(). What is useReducer()? useReducer() is JavaScript function, which allows to use reducer functions from state management in functional co...

This blog post continues the series about React Hooks. Here we are exploring one of basic and important hooks in React - useContext(). What is useContext()? useContext() is JavaScript function, which lets you read the context and subscribe to its cha...

This blog post continues the series about React Hooks. Here we are exploring one of basic and very important hooks in React - useEffect(). What is useEffect()? useEffect() is JavaScript function, which lets you perform side-effects in functional comp...
