Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 2.16 KB

README.md

File metadata and controls

65 lines (50 loc) · 2.16 KB

Expo Quiz

A trivia game made w/ React Native, Expo and modern Redux.

Project Kanban

Review public project kanban on Trello.

Folder structure

├── App.tsx – root component
├── app – source code of the app
│   ├── components - react components
│   │   ├── common - common components reused accross screens
│   │   └── screens - screen components
│   │       ├── HomeScreen
│   │       │   └── components - specific components
│   │       ├── QuizScreen
│   │       └── ResultScreen
│   │           └── components - specific components
│   ├── config - project config/info constants
│   ├── hooks - abstractions of effects using react hooks
│   ├── services - connection w/ external services
│   ├── store - app global store
│   │   └── modules - store modules following ducks/RTK patterns
│   │       └── __tests__ - modules unit tests
│   └── test - jest config/helper files
│       └── utils
└── assets
    └── fonts

Getting Started

Installing

yarn install

Run App

yarn start

Test

yarn test

Main References