├── .gitignore ├── FOLLOW-UP.md ├── README.md ├── assets └── logo_black.svg └── mobile └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /FOLLOW-UP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonpay/react-native-challenge/HEAD/FOLLOW-UP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonpay/react-native-challenge/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moonpay/react-native-challenge/HEAD/assets/logo_black.svg -------------------------------------------------------------------------------- /mobile/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------