Building a Simple React Application

Francis Ali
10 min readMay 18, 2020
LET’S GOOOOO

Before we wander off into the world that is ReactJS, I just want to let you guys know that this is my first blog post. So the fact that you’re reading this means the world. As this is my first post I thought it would be best to start with my favourite frontend library, ReactJS. Whether you are a beginner or just someone that wants to build a very simple React application, then this is the blog post for you.

What we’re going to build

For this tutorial, we will be developing a very basic React application, where a user will be able to input a value which will be used to increment or decrement a current count. Basically, an extremely simple calculator that can only perform addition and subtraction. We won’t just be going over ReactJS but also some CSS!

Screenshot of what we will be developing

The source code for this tutorial can be found on my GitHub

This tutorial will not be going over the nitty-gritty details of React. Instead, we’re just going to go head first into development, with little bits of information along the way.

Setting up the React App

I am going to go with the assumption that you already have create-react-app and npx installed. If not, then at the bottom of this page you’ll find a link that should help with the installation process.

To start with, jump into the terminal and cd into your preferred directory. Then enter the following and hit Enter.

npx create-react-app .
npx create-react-app .

This command will set up your development environment where you will be able to start building the React application. One of the great things about create-react-app is that you don’t need to install or configure tools such as webpack or Babel, but instead focus on the code.

The “.” in the above snippet means that a React application will be generated and named after the directory you are currently in. Now, to ensure that everything has been installed properly. Run the command shown below:

npm start

If setup was successful your browser will open up on http://localhost:3000/ displaying the React logo along with some content.

Building in React

Now that we have the boilerplate code, we can start building the application. The first thing to do is to open up your favourite text editor (VSCode is the best) and then the directory containing the React application. From there, navigate to the App.js file. This file contains the App component which acts as the container for all other components.

Remove all the necessary lines of code until your App.js file looks like the one shown below.

App.js

We have removed the imports and styles and also emptied the body of the return statement and added a <h1> tag which will display the name of the application. Standard HTML stuff.

Now we can move onto creating the core part of the application. Within your src folder, create a new directory called components. Within that folder create a file called Counter.js and add the boiler plate code for the component as shown below:

components/Counter.js

Within the return statement, we have the mandatory div tag to encapsulate the rest of the component. We added an input field that can only receive a number, which is done by specifying type as “number”. We also added a placeholder to give users a bit of guidance on what to enter.

Then we have the two buttons, “-” and “+”. We will add functionality in the next step, where the “-” button will decrement the count by the value specified in the input field, whereas the “+” button will increment the count by said amount.

You’re probably wondering why there is a <div> between the two buttons. This will later be used to show the current count which will be set up in the next step.

Adding Functionality

Now it would be a pretty boring app if it didn’t do anything apart from look the part. In this section we will add functionality so that the app can increment and decrement a count by a given value. We will add the following lines shown in colour in the snippet below:

component/Counter.js

To start with, we import the React hook useState, which will allow us to have a state variable in our functional component Counter. To make use of this we write the line shown opposite, containing the const [count, setCount].

n English, what this line means is that we want to have a count which we will initially set to 0. Therefore, every time the application has mounted, the count will be set to 0. We are also telling the system that we want a function setCount which will allow us to change the value of count. The count has also been added, which is shown within the <div> tag.

Similar to what we did with [count. setCount], we will do the same for [value, setValue]. Value is initialised to the value 1 and will be used to increment or decrement the count. The code is shown in the snippet below:

component/Counter.js

Now that we have set up the two states required for this component, it’s time that we put them to use. To start with, we want the value to be set to whatever the user enters in the input field. This is done shown in the code below:

components/Counter.js

As you can see, we have modified the <input> tag so that it now holds the attribute onChange. This attribute refers to a callback function which takes e (event) as a parameter.

In plain English, this callback function is telling the system that it must set the state of value to the number that has been entered. The value variable is then set using setValue.

As the input value is a string, we will use the parseInt() function to convert the value into an integer. Without this function, we would not be able to perform addition properly, as it would instead be concatenating the value. The parameter passed into parseInt is as follows:

setValue(parseInt(e.target.value || 0));

This is telling the React application to set the state of value to whatever number that is currently in the input field. However if a no number exists, then set the state of value to 0. This is to ensure that value is never set to NaN.

Increment and Decrement

As stated earlier, we want the “-” button to decrement the count by the value and the “+” button to increment the count. As we have the setCount function, implementing this feature is quite straight forward and is shown in the code snippet below:

components/Counter.js

We have modified the two buttons so that they now include the property onClick. For onClick we pass in a callback function which points to setCount. For the “-” button, it is telling the system that when someone clicks this button, it wants it to call the setCount method which will subtract the value from the current count. Similarly for the “+” button, but instead perform addition.

In terms of functionality, that’s the Counter component done. To see that it is working properly we need to import it and then implement it into App.js. The lines added are shown in green in the code snippet below:

App.js

All we have done is imported the Counter into App.js and then placed it just below our <h1> tag.

Okay, that’s the React side done. Now it’s time to focus on styling the app, as right now it’s pretty bland.

Styling the App

Let’s first start by giving the background some colour. Jump into the index.css file and within the body section add the line shown at the bottom of this snippet:

index.css

For those that are not so familiar with CSS, what we are doing here is just setting the background colour to wheat.

background-color: wheat;

When it comes to styling in ReactJS, there are a couple of ways in which we can do this. For this tutorial, we will cover two different methods. The first one is to create a corresponding CSS file to Counter.js.

In the components directory, create a file called counter.css, which will contain the styles for the Counter component. Before writing these styles we first need to add the class names within Counter. These will be used as reference points for counter.css so that it knows what areas to target. The code snippet below will show what changes need to be made in Component.js, where the changes are shown in green.

components/Counter.js

First, we import the CSS file we have created for the Counter component, which will now allow us to style the component from within counter.css. Next we add all the relevant class names, with the first one being container. This will act as a box that will contain the input field, the counter display and the two buttons. Then we add the class names button and count, In order for us to style each of those.

A class name was not added for the input field as I want to give an example as to how we can style an HTML tag without the use of a class. However it is good practice to add classes where possible.

Now that we have the added the class names, we can start writing the CSS code. Let’s jump back into component.css.

Container CSS

As many of us browse the web via our phones, it would be a good idea to make this application as responsive as possible. We could do this using CSS flexbox, however for this tutorial we will instead use Grid. The code snippet below shows the styles used to design the container.

components/counter.css

With the grid, we structured it so that there are three columns and two rows, with a gap between each item being 2rem. The text and content within the container are then centred using text-align and justify-content.

Input CSS

components/counter.css

Now for the input field, this will cover each of the three columns in the first row. This is done using grid-column-start and grid-column-end. The great thing about doing this is that the other components, the buttons and the count display, will organise themselves automatically. As their positioning is relative to the input field.

Count CSS

For this we just want the count to be displayed so that it is in the centre of the two buttons that are on either side of it (referencing the screenshot of the app provided earlier). We also want the font size to be large enough so that the user can see clearly. The CSS code is shown in the snippet below:

components/counter.css

Button CSS

For the finishing touch, we just need to style the buttons. To do this we will add a background colour to it, coral, so that it stands out from the main background. Also giving it some height and a nice border. The code is shown below:

component/counter.css

Adding Styles to App.css

I said earlier that we would cover two different ways of adding CSS styles to our React app. The first method was just done, where we created an external CSS file and then imported it into Counter.js. The second method is to write the styles within a React component. We will do this now for App.js. Make the changes shown in the code below (highlighted in green):

App.js

This form of styling is known as inline styling, where we write the values as JavaScript objects. You may have noticed a difference between the naming conventions used in the above example with what we wrote for the CSS style sheets. Since the inline CSS is written in a JavaScript object, properties with two names, like text-align or margin-top, must be written with camel case syntax.

THAT’S A WRAP

Congratulations! We’ve just developed a very basic React application that allows us to add or subtract a specified value from a count. We dabbled with React hooks and added some styles in CSS to make the application responsive.

Thank you so much for reading this blog post. I hope found it helpful. This entire project is available on my GitHub:

https://github.com/sixfwa/react-project-1

If you have any comments or feedback, please feel free to comment below or reach me.

My Twitter is: @sixfwa

Link to Installation

--

--