An open API service indexing awesome lists of open source software.

https://github.com/gah-code/react-quiz-app


https://github.com/gah-code/react-quiz-app

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# React Quiz App

![Design preview for the Manage landing page coding challenge](./src/design/quiz-app-ui.png)

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.

## Table of Contents

- [Demo](#demo)
- [Features](#features)
- [Installation](#installation)

## Demo

Check out the live demo of the app [here](#).

## Features

- Create and take quizzes
- View quiz results
- JSON Server for managing quiz data
- Responsive design
- Timer

## Installation

Follow these steps to set up the project on your local machine.

### Clone the Repository

```bash
git clone https://github.com/yourusername/react-quiz-app.git
cd react-quiz-app

```

## Project Structure Draft

```plaintext
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

```