A simple quiz application built with React and JSON Server. This project allows users to take quizzes and see their results. It is designed to be easy to set up and extend.
Check out the live demo of the app here.
- Create and take quizzes
- View quiz results
- JSON Server for managing quiz data
- Responsive design
- Timer
Follow these steps to set up the project on your local machine.
git clone https://github.com/yourusername/react-quiz-app.git
cd react-quiz-app
react-quiz-app/
├── data/
│ └── questions.json
├── public/
│ └── index.html
├── src/
│ ├── components/
│ │ ├── App.js
│ │ ├── Error.js
│ │ ├── FinishScreen.js
│ │ ├── Header.js
│ │ ├── Loader.js
│ │ ├── Main.js
│ │ ├── StartScreen.js
│ │ └── Quiz.js
│ ├── App.js
│ ├── index.js
│ └── ... (other React components and files)
├── .gitignore
├── package.json
└── README.md
