Our frontend component is divided into the following files:
- index.js: The entry point to our React application, which calls the App component.
- App.js: The main component of our React application. It combines all of the other components to form our app. The App component hosted in the App.js file takes care of some important central tasks such as the signing in or the signing out of a user.
- modalwindows.js: This is responsible for all of the modal windows in our application. This includes the sign in, the new user registration, and the buy modal window.
- Navigation.js: This is responsible for the navigational menu in our React application, which is how we move from one screen to another.
- creditcards.js: This is responsible ...