Fast React Pizza Co. is a simple web application built with React. It displays a menu of pizzas available for order. The menu is dynamically generated from a data file and includes the pizza name, ingredients, price, and a photo. The application also indicates whether a pizza is sold out.
The project is structured as follows:
public/
: This directory contains static files such as the HTML file and images.src/
: This directory contains the React JavaScript files.package.json
: This file lists the project dependencies and scripts.package-lock.json
: This file is automatically generated and describes the exact tree of dependencies that were installed.README.md
: This file provides an overview of the project and instructions for running the application.
To run the application, follow these steps:
- Install the project dependencies by running
npm install
. - Start the application by running
npm start
. - Open a web browser and navigate to
http://localhost:3000
to view the application.
In the project directory, you can run:
npm start
: Runs the app in the development mode.npm test
: Launches the test runner in the interactive watch mode.npm run build
: Builds the app for production to thebuild
folder.npm run eject
: Removes the single build dependency from your project. Note: this is a one-way operation. Once youeject
, you can't go back!
The application is ready to be deployed after running npm run build
. See the section about deployment for more information.
Contributions are welcome. Please open an issue or submit a pull request on GitHub.
This project is licensed under the MIT License.