This is a simple quiz application built with React, designed to test your knowledge of React concepts. The app displays multiple-choice questions about React, tracks your score, and provides feedback on your answers.
- Interactive, multiple-choice questions about React
- Real-time score tracking
- Feedback on correct/incorrect answers
- Clean and responsive design
- Easy to extend with additional questions
A live demo of the application can be found here.
- React: Frontend library for building the user interface
- CSS: For styling the application
- JavaScript: To manage quiz logic and state
- /src: Contains all source code
- /components: Reusable components like Quiz, Question, Score, etc.
- App.jsx: Main app component that renders the quiz
- Main.jsx: Entry point of the application
- Node.js and npm (Node Package Manager) installed on your system.
- Clone this repository:
git clone https://github.com/yourusername/react-quiz-app.git cd react-quiz-app
2.Install dependencies:
npm install
3.Start the development server:
npm run dev
4.Open your browser and navigate to http://localhost:5173/ to view the app.