react.js State Management in React Apps - Part I Previously we have learnt how to properly use JSX, and how React components communicate with each other. Yet, we still didn't cover another very important question: where to store information that our application
react React: First Steps ReactJS is a javascript library for building UIs. Although it's nowhere strictly defined, the idea with React is to follow the component-based ideology. Its declarative views make the code more predictable and easier
react React Guide to Props - Part III Previously we've learned how to pass props in react and also how to indirectly communicate between components using props. Today, we're getting to the finale of props guide series, where we'll talk about
react Snapshot Tests in React Using Jest Writing tests might not have been the most enjoyable thing for you in the past but we for sure hope that after reading this article, you'll be able to increase the test coverage.
react React Guide to Props - Part II In the previous article, you were able to read about the basics of React props. In that article, we wrote about things like sending event handling functions as props, spread operators and sending
react React Guide to Props - Part I Disclaimer: This was intended to be part III of React JSX series, but as for props there's a lot to be covered, we have decided to divide it into a subseries! In some
react React JSX - How to do it the right way - Part II In the previous part of React JSX series, we took a look at how to correctly loop through arrays and objects in React. In this article, we'll help you learn how to write
react React JSX - How to do it the right way - Part I Usually, when developing a website, you'll need some dynamical rendering, like a listing of items, showing some element under a certain condition and so on. You're all aware of the standard JS syntax
react How to Build Simple React App (Part 4) In the previous part we connected our application with RESTful API, which made it more realistic. This part is the final part of our series "How to build simple React app"
react How to Build Simple React App (Part 3) This is thr third part of our series about building simple react application. In this part, our main topic will be connecting our application to RESTful API. For that, we will need to
react How to Build Simple React App (Part 2) In the previous part of How to build simple React app, we had set up basic boiler-plate for our ToDo application. In this part we will: start building our application logic, introduce actions
mobile application How to Build Simple React App (Part 1) In this article, we will go through the whole process of building simple front-end application using React from the ground up. First of all, we will go through setup process, how to setup