├── .gitignore ├── .vscode └── settings.json ├── .watchmanconfig ├── App.js ├── LICENSE ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── now.json ├── package.json ├── src ├── Selector.js └── Web.js ├── web └── dist │ └── index.html └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/Selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/src/Selector.js -------------------------------------------------------------------------------- /src/Web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/src/Web.js -------------------------------------------------------------------------------- /web/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/web/dist/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrcrobles/react-native-web-expo-boilerplate/HEAD/webpack.config.js --------------------------------------------------------------------------------