This is a small Redux / Redux Toolkit application that lets you create quizzes with flashcards
- This is a Challenge Project from the Codecademy curriculum for the Full-Stack-Engineer Career-Path
- The goal of this project was to manage the complex state of a flashcard-style quiz app
- The project was developed outside of the Codecademy environment with few instructions
- Parts of the front-end code were provided
- React 17.0.1
- Redux Toolkit 1.5.0
- React Redux 7.2.2
- Creating topics
- Creating quizzes about these topics
- Providing flashcards (+ flipping animation) for these quizzes
Live demo here.
The dependencies which are necessary to run this app can be found in the package.json file.
- Clone the repo
- Navigate to the project folder in the terminal and install the necessary NPM dependencies
npm install
- Start the app in your browser by running
npm start
in your terminal
- Structuring a React / Redux app with the separation into features and components
- Getting used to work with slices, actions creators and selectors
The project is finished
- This project is part of the Codecademy curriculum.