Creating a Expense Tracker in React.js - Part 1
Create a new React Project with name Expense Tracker
After we have created our project.
we see multiple files are created in the project folder..
The first file that is executed after you run the application using npm start is index.js.
which takes all the rendering data from the App.js file.
So, to make any changes in the output we need to change the App.js file.
we will create a component to display the expense.
Comments
Post a Comment