๐๐ฎ๐ ๐ด๐ต - ๐จ๐ป๐ถ๐ ๐ง๐ฒ๐๐๐ถ๐ป๐ด ๐ถ๐ป ๐ฅ๐ฒ๐ฎ๐ฐ๐ 
Testing is crucial for ensuring that your React components work as expected. There are several approaches to testing React applications, including unit testing, integration testing, and end-to-end (E2E) testing. Today, we will tackle unit testing.
Jest is a popular testing framework for JavaScript and React Testing Library helps with testing React components in a way that mimics user interaction. By combining both Jest & React Testing Library, we can write efficient quick unit tests.

