An application built without React Bootstrap that allows users to create, add, edit, delete decks, and delete cards in the decks used for studying.
- Decks of Cards Management: Creates, edits, and deletes card decks.
- Card Management: Creates, edits, and deletes the cards in the decks.
- Study Ability: Memorize the answers to the problems on the cards to prepare for tests.
- User-friendly Interface: Simple structured layout for easy navigation.
- React: Core programming language (React 18.2.0)
- CSS: Provides visual styling of the application
- HTML: Visually displays the content of the application
- Jest: Unit testing framework
- Node Package Manager (NPM)
- Clone the repository:
git clone https://github.com/jlee55504/flashcard-o-matic-project-qualified-version.git
- Navigate to the project directory:
cd flashcard-o-matic-project
- Build the project:
npm install
- Run the application:
npm start
Upon running the application, you'll be presented with the options to:
- Create a new card deck
- View a deck of cards
- Study a deck of cards
- Delete a deck of cards
Navigate through the options by clicking the corresponding buttons.
src/Layout/index.js:
Main application entry pointsrc/decks/CreateDeck.js:
Creates new card deckssrc/decks/Deck.js:
Allows a deck to be edited, studied, or deleted. New cards can also be added to the deck the current cards being displayed can be edited or deletedsrc/decks/EditDeck.js:
Allows the name and description of a deck to be editedsrc/cards/Study.js:
Displays the front and back of every card in the deck to prepare for testssrc/cards/AddCard.js:
Allows new cards to be added to deckssrc/cards/EditCard.js:
Allows the front and back of every card to be editedsrc/Layout/style.css:
Handles the visual styling of the applicationsrc/imgs/:
A folder containing the screenshot of the application
- This project was built for the Chegg Skill's software engineering program
- This project taught me how to use the "useEffect" React.js hook to immediately update the information displayed on the web page which was extremely helpful in furthering my software engineering career