As we continue our coverage of React content, let’s move forward by taking a step back and learning about the traditional way of creating components in React. Up until version 16.8 of React, if you […]
Continuing our series about React, specifically React hooks, let’s take a look at the useEffect hook. This is a very powerful hook that allows you to handle side effects of state or prop changes as […]
React hooks are great. Released with version 16.8 in 2019, React hooks allow React function components to use state similarly to how class components do. Despite being around a couple years, many of us are […]
When it comes to front-end web development, there are two major frameworks that stand out: React and Svelte. Both of these frameworks have their pros and cons, but which one is the best? What Is […]
If you're looking to build a web application, you're going to have to choose between three popular frameworks: React, Angular, and Vue. In this article, we'll compare these three frameworks head-to-head, so you can make […]
In this article, we're going to take a look at the similarities and differences between React and Next.js in . What is React? In its early days, it was widely regarded as a front-end platform […]
Adding comments in JSX (JavaScript XML) works a bit differently than regular Javascript comments. A common question for those getting started in React is "how do you add JSX comments?". If you try to add […]
In this article, we're going to discuss how to make a multi page website (or app) in React. This is a relatively simple concept, and can be done in about five minutes. Once you understand […]