├── .eslintrc.json ├── .expo-shared └── assets.json ├── .gitignore ├── App.ts ├── LICENSE ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── App.spec.tsx ├── App.tsx ├── __snapshots__ │ └── App.spec.tsx.snap ├── components │ ├── NewPost.tsx │ └── PostList.tsx ├── mock.ts └── screens │ ├── AboutScreen.tsx │ ├── HomeScreen.tsx │ └── types.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | node_modules 4 | .expo 5 | -------------------------------------------------------------------------------- /App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/App.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/App.spec.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__snapshots__/App.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/__snapshots__/App.spec.tsx.snap -------------------------------------------------------------------------------- /src/components/NewPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/components/NewPost.tsx -------------------------------------------------------------------------------- /src/components/PostList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/components/PostList.tsx -------------------------------------------------------------------------------- /src/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/mock.ts -------------------------------------------------------------------------------- /src/screens/AboutScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/screens/AboutScreen.tsx -------------------------------------------------------------------------------- /src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/src/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /src/screens/types.ts: -------------------------------------------------------------------------------- 1 | export type StackParams = { 2 | About: undefined; 3 | }; 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dai-shi/typescript-expo-apollo-boilerplate/HEAD/tsconfig.json --------------------------------------------------------------------------------