Serving a React app from Nginx

I recently created a simple React app for running different tax calculations (still a work in progress) called Calc Mate and decided to deploy it on a Linode instance I have running Nginx. Create a new nginx site configuration file for the react app Create a new configuration file for your application. sudo vim /etc/nginx/sites-available/calc-mate … Continue reading Serving a React app from Nginx

Advertisement

Basic React Component Structure and Concepts

This post is just a quick overview of some of the basics of React development, shedding light on component basics and some of the technologies and terms used in React development. You can think of a React component as a piece of the UI in your application. A User Interface can be broken into small, … Continue reading Basic React Component Structure and Concepts