Welcome to the code assessment for Lucid's UI Team.
This README details what we expect from you on this assessment. If you have any questions, feel free to reach out anytime.
Please, use this repository to fork the project into your account and submit the link to us (by email) with the final solution when done.
The purpose of this exercise is to build a React application based on the provided mockups and requirements below:
The application is a Quiz interface - a UI that shows a set of questions and lets the user select an answer for each one.
The Quiz features three different types of questions. Use the included mockups as references for styling.
Multiple
A multiple-choice question (predefined answer options)
Boolean
A "true or false" only answer question
Text
An open-ended text question
-
The UI should fetch the questions data from an API (provided in this repository). More details in API instructions
-
The application should display one question per time, randomly selected from the set of questions.
-
When the user finishes the Quiz, the UI should display a summary page with the results, including:
- Number of correct answers
- Number of incorrect answers
- Total number of questions answered
- The final score (%)
- A button to restart the Quiz with a different questions
A reference mockup for the summary page is depicted below:
This repo provides a React application bootstrap. To get setup, run these commands:
- Install dependencies:
npm install
- Run it locally
npm start
The command above will:
- Start an HTTP server for the API (localhost:4000);
- Start an HTTP server (powered by react-scripts) for the front-end (localhost:3000);
This repository provides a basic API (running under port 4000) that returns the required data for the application.
The API will be available after running the npm start
command.
http://localhost:4000/api/questions