Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 2.28 KB

File metadata and controls

72 lines (49 loc) · 2.28 KB

Contributing to React Interview Questions

Thank you for considering contributing to this repository! Your contributions help improve the quality of this resource and assist others in their learning journey. Please follow the guidelines below to ensure a smooth collaboration.

How to Contribute

  1. Fork the Repository

    • Click the "Fork" button at the top right of the repository page to create your own copy of the project.
  2. Clone Your Fork

    • Clone your forked repository to your local machine:
      git clone https://github.com/reactjsdevelopment/react-qs.git
  3. Create a New Branch

    • Create a new branch for your changes:
      git checkout -b new/ques
  4. Make Changes

    • Make your desired changes to the files. This can include adding new questions, improving existing content, or fixing typos.
  5. Commit Your Changes

    • Add your changes to staging and commit them with a descriptive message:
      git add .
      git commit -m "Add new question about [topic]"
  6. Push to Your Fork

    • Push your changes to your forked repository:
      git push origin [your-branch-name]
  7. Create a Pull Request

    • Navigate to the original repository and click on "Pull Requests."
    • Click "New Pull Request" and select your branch. Add a description of the changes you made and why they are beneficial.

Guidelines for Contributions

  • Content Quality: Ensure that your contributions are accurate, well-structured, and easy to understand.
  • Formatting: Follow the existing formatting style of the repository. Use Markdown for formatting your text and code.

Important

Use correct format

TABLE

| ques. No.  | [Question Name](#ques-link)                                                                                                                                                              |

CONTENT

[ques No.]  ### [Your question]

    [your solution/explanation attack code if need to be check others solution for format]

    **[⬆ Back to Top](#table-of-contents)**

Questions?

If you have any questions or need assistance, feel free to open an issue in the repository or contact the maintainers directly.

Thank you for your contributions!