React modular componentsMarch 06, 2019 at 20:03
Do you remember React and how deep in love I am? Right then, today I come with modular components ! Or as I call them to look fancy, smart components . Smart, modular? Well, a little disclaimer here: They're not named like that, nor is an…
Dive into react part3: Dealing with the stateJanuary 07, 2019 at 10:01
There we are, today we're going to create the state of the application! A brief word about the state The state of the application should always be separated from the view. This means that by all means, you should never store the state inside the view…
Dive into react part 2: Structuring componentsDecember 28, 2018 at 16:12
This is the second part of basic React tutorials, you can check out the first part if you haven't, also I've created a tag to serve as index for this tutorial series! In this part we'll focus on the component creation, and how to structure our…
Dive into react part 1: Basics of JSXDecember 10, 2018 at 10:12
In this tutorial series I'll try to cover the basic aspects of React , this tutorial series ends with a small web game: A tic-tac-toe with scoreboard. The library React is a library that can serve you as the or "The view" in your app, or as…