Skip to content

Latest commit

 

History

History
72 lines (53 loc) · 1.8 KB

File metadata and controls

72 lines (53 loc) · 1.8 KB

Contributing to QuickStart React

Thank you for your interest in contributing to QuickStart React! Your contributions help make this project better for everyone.

How You Can Contribute

🚀 Reporting Bugs

  • Use the Issues tab to report bugs.
  • Provide clear steps to reproduce, expected behavior, and screenshots if applicable.

🛠️ Submitting Enhancements or Features

  • Open an issue first to discuss your idea.
  • Please wait for approval before starting major work.

🧪 Writing Tests

  • If you’re fixing a bug or adding a feature, add relevant tests.
  • Ensure all tests pass before opening a pull request.

Getting Started

1. Fork the Repository

Click the “Fork” button at the top right of the repo.

2. Clone Your Fork

git clone https://github.com/your-username/quickstart-react.git
cd quickstart-react

3. Install Dependencies

npm install

4. Run the Project

npm start

Code Guidelines

  • Follow the existing code style.
  • Use meaningful commit messages.
  • Write clean, modular, and reusable code.

Submitting a Pull Request

  1. Create a new branch:
git checkout -b feature/your-feature-name
  1. Commit your changes:
git commit -m "Add feature: description"
  1. Push to your fork and open a PR:
git push origin feature/your-feature-name

Then go to GitHub and open a pull request from your branch.

Code of Conduct

Please note we have a Code of Conduct. By participating, you agree to abide by its terms.

Need Help?

If you have any questions, open an issue or reach out via discussions.

Happy coding! 💻✨