First of all, we must create our application in our local environment, for this, we will use Create React App .
The application that we are going to deploy in Netlify will be called hello-react , therefore the command we execute is:
npx create-react-app hello-react
This command creates a basic React application configuring ... Read More