Learn the most popular JavaScript library for building user interfaces
React Context API: It's Not as Difficult as You Think
React Context gives data about the components regardless of the level of the component tree. The Context allows managing global data, such as global theme services, user preference, notifications, or more.
How to get started with routing in React apps with React Router
React itself is focused on building user interfaces, and it lacks a fully integrated routing solution. React Router is React's most popular routing library. Check how to get started with React Router
What is react redux, and what development of redux apps looks in 2021
I want to invite you to the journey throughout react-redux. Check how development of redux app looks like and and what you need to pay special attention to.
What is JSX in React, and is it worth making friends with it
JSX is an HTML-like syntax from React that extends ECMAScript. JSX allows you to write HTML code mixed with JavaScript. Get started with JSX.
7 People to follow when you want to learn React + pro-hint how to learn
I would like to share with you seven people from whom you can learn the React and pro-hint how to learn (nothing special, do not read it – it's at the end of the article.
The beginner's guide to the React useReducer Hook
Delivered in React 16.8 useReducer hook allows you to manage complex state logic in React Applications. The useReducer hook is an alternative for the useState hook and, combined with other interesting React’s feature called Context, helps manage state efficiently.
Everything you need to know about CSS modules
A CSS module is just a CSS file which gives you the possibility to style components. The most important advantage of CSS modules is that the styles are scoped locally by default, but what does this actually mean?