gitextract_1v1ble8m/ ├── .gitignore ├── boilerplate/ │ ├── .babelrc │ ├── .editorconfig │ ├── App/ │ │ ├── Components/ │ │ │ ├── AlertMessage/ │ │ │ │ ├── AlertMessage.story.tsx │ │ │ │ ├── AlertMessage.tsx │ │ │ │ ├── AlertMessageStyles.ts │ │ │ │ ├── AlertMessageTest.tsx │ │ │ │ └── index.ts │ │ │ ├── DrawerButton/ │ │ │ │ ├── DrawerButton.story.tsx │ │ │ │ ├── DrawerButton.tsx │ │ │ │ ├── DrawerButtonStyles.ts │ │ │ │ ├── DrawerButtonTest.tsx │ │ │ │ └── index.ts │ │ │ ├── FullButton/ │ │ │ │ ├── FullButton.story.tsx │ │ │ │ ├── FullButton.tsx │ │ │ │ ├── FullButtonStyles.ts │ │ │ │ ├── FullButtonTest.tsx │ │ │ │ └── index.ts │ │ │ ├── README.md │ │ │ ├── RoundedButton/ │ │ │ │ ├── RoundedButton.story.tsx │ │ │ │ ├── RoundedButton.tsx │ │ │ │ ├── RoundedButtonStyles.ts │ │ │ │ ├── RoundedButtonTest.tsx │ │ │ │ └── index.ts │ │ │ └── Stories.tsx │ │ ├── Config/ │ │ │ ├── AppConfig.ts │ │ │ ├── DebugConfig.js │ │ │ ├── README.md │ │ │ ├── ReactotronConfig.ts │ │ │ ├── ReduxPersist.ts │ │ │ └── index.ts │ │ ├── Containers/ │ │ │ ├── App.tsx │ │ │ ├── LaunchScreen/ │ │ │ │ ├── LaunchScreen.tsx │ │ │ │ ├── LaunchScreenStyles.ts │ │ │ │ └── index.ts │ │ │ ├── README.md │ │ │ └── RootContainer/ │ │ │ ├── RootContainer.tsx │ │ │ ├── RootContainerStyles.ts │ │ │ └── index.ts │ │ ├── Fixtures/ │ │ │ ├── README.md │ │ │ ├── gantman.json │ │ │ ├── rateLimit.json │ │ │ ├── root.json │ │ │ └── skellock.json │ │ ├── Images/ │ │ │ └── README.md │ │ ├── Lib/ │ │ │ ├── README.md │ │ │ └── ReduxHelpers.ts │ │ ├── Navigation/ │ │ │ ├── AppNavigation.tsx │ │ │ ├── ReduxNavigation.tsx │ │ │ └── Styles/ │ │ │ └── NavigationStyles.ts │ │ ├── Reducers/ │ │ │ ├── CreateStore.tsx │ │ │ ├── GithubReducers/ │ │ │ │ ├── GithubReducersTest.tsx │ │ │ │ └── index.tsx │ │ │ ├── NavigationReducers/ │ │ │ │ └── index.tsx │ │ │ ├── ScreenTrackingMiddleware.tsx │ │ │ ├── StartupReducers/ │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── Sagas/ │ │ │ ├── GithubSagas/ │ │ │ │ ├── GithubSagaTest.ts │ │ │ │ └── index.ts │ │ │ ├── StartupSagas/ │ │ │ │ ├── StartupSagaTest.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Services/ │ │ │ ├── Api.ts │ │ │ ├── ExamplesRegistry.tsx │ │ │ ├── FixtureAPITest.tsx │ │ │ ├── FixtureApi.tsx │ │ │ ├── GithubApi.tsx │ │ │ ├── ImmutablePersistenceTransform.tsx │ │ │ └── RehydrationServices.tsx │ │ ├── Themes/ │ │ │ ├── ApplicationStyles.ts │ │ │ ├── Colors.ts │ │ │ ├── Fonts.ts │ │ │ ├── Images.ts │ │ │ ├── Metrics.ts │ │ │ ├── README.md │ │ │ └── index.ts │ │ └── Transforms/ │ │ ├── ConvertFromKelvin.ts │ │ └── README.md │ ├── README.md │ ├── Tests/ │ │ ├── Setup.tsx.ejs │ │ └── StoriesTest.ts │ ├── ignite.json.ejs │ ├── index.js.ejs │ ├── package.json.ejs │ ├── rn-cli.config.js │ ├── storybook/ │ │ ├── addons.js │ │ ├── index.js │ │ └── storybook.ejs │ ├── tsconfig.json │ ├── tslint.json │ └── types/ │ ├── @storybook/ │ │ └── react-native.d.ts │ └── reduxsauce/ │ └── index.d.ts ├── boilerplate.js ├── commands/ │ ├── component.js │ ├── container.js │ ├── list.js │ ├── reducers.js │ ├── saga.js │ └── screen.js ├── ignite.json ├── lib/ │ ├── patterns.js │ └── react-native-version.js ├── options.js ├── package.json ├── plugin.js ├── readme.md ├── templates/ │ ├── component-index.ejs │ ├── component-story.ejs │ ├── component-style.ejs │ ├── component-test-jest.ejs │ ├── component.ejs │ ├── container-style.ejs │ ├── container.ejs │ ├── flatlist-grid-style.ejs │ ├── flatlist-grid.ejs │ ├── flatlist-sections.ejs │ ├── flatlist.ejs │ ├── listview-grid-style.ejs │ ├── reducers-test-jest.ejs │ ├── reducers.ejs │ ├── saga-test-jest.ejs │ ├── saga.ejs │ ├── screen-index.ejs │ ├── screen-style.ejs │ └── screen.ejs ├── test/ │ ├── generators-integration.test.js │ ├── interface.test.js │ └── react-native-version.test.js └── tsconfig.json