Gideon Idoko

#react   (4 posts)

First Look Into Writing Unit Tests in React cover image

First Look Into Writing Unit Tests in React

Sep 21, 2022  |  14 mins read  |  Gideon Idoko

Unit and integration testing are the most basic and popular types of software testing. While unit testing asserts that the functionality of a small part or individual components of an application ...

The flushSync Method in React cover image

The flushSync Method in React

Aug 03, 2022  |  3 mins read  |  Gideon Idoko

React batches multiple state updates made within hooks or callbacks to improve the performance of applications. flushSync is a method made available by the react-dom package that helps to bypass t...

Memoization in React Done Right cover image

Memoization in React Done Right

Mar 20, 2022  |  11 mins read  |  Gideon Idoko

Performance is a vital quality every software product ought to possess. It is a measure of how efficiently your software meets the response time requirements when a user interacts with it. There a...