gitextract_xlac7l3x/ ├── LICENSE.MD ├── README.md ├── authentication/ │ ├── .eslintrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── android/ │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ ├── react.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── authentication/ │ │ │ │ └── MainActivity.java │ │ │ └── res/ │ │ │ └── values/ │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── index.android.js │ ├── index.ios.js │ ├── ios/ │ │ ├── authentication/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── authentication.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── authentication.xcscheme │ │ └── authenticationTests/ │ │ ├── Info.plist │ │ └── authenticationTests.m │ ├── package.json │ └── src/ │ ├── components/ │ │ ├── authentication/ │ │ │ ├── signin.js │ │ │ └── signup.js │ │ ├── common/ │ │ │ └── button.js │ │ └── tweets/ │ │ └── tweets.js │ └── main.js ├── stopwatch/ │ ├── .flowconfig │ ├── .gitignore │ ├── .npmignore │ ├── iOS/ │ │ ├── stopwatch/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── main.jsbundle │ │ │ └── main.m │ │ ├── stopwatch.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── stopwatch.xcscheme │ │ └── stopwatchTests/ │ │ ├── Info.plist │ │ └── stopwatchTests.m │ ├── index.ios.js │ └── package.json ├── weather/ │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── android/ │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── weather/ │ │ │ │ └── MainActivity.java │ │ │ └── res/ │ │ │ └── values/ │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── index.android.js │ ├── index.ios.js │ ├── ios/ │ │ ├── main.jsbundle │ │ ├── weather/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── weather.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── weather.xcscheme │ │ └── weatherTests/ │ │ ├── Info.plist │ │ └── weatherTests.m │ ├── package.json │ └── src/ │ └── api.js └── weekdays/ ├── .flowconfig ├── .gitignore ├── .npmignore ├── iOS/ │ ├── weekdays/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── main.jsbundle │ │ └── main.m │ ├── weekdays.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── weekdays.xcscheme │ └── weekdaysTests/ │ ├── Info.plist │ └── weekdaysTests.m ├── index.ios.js ├── package.json └── src/ └── day-item.js