Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1017 Bytes

README.md

File metadata and controls

49 lines (36 loc) · 1017 Bytes

Weather App

Weather app made with Expo, React Native and Redux.

Technologies

  • TypeScript
  • React Native
  • Redux + redux-thunk
  • styled-components + styled-system
  • Jest

Project Structure

├── app # source code
|   ├── components
|   |   ├── common # common components reused in the screens
|   |   |── screens # screen components
|   |   |   └── Screen # some app screen
|   |   |      └── components # specific components from the screen
|   ├── config # app common config (i.e. routes and theme)
|   ├── store
|   |   |── modules # modules containing actions, reducers, selectors and thunks
|   |   |   └── __tests__ # modules tests
|   └── test # jest configs
└── App.tsx # root component

Installing

yarn install

Running

yarn start

Test

yarn test