An example React Native Project Structure
In this article, I will go over an example project structure you can use for your React Native projects. This of couse my opinion so feel free to tweak the structure to your needs/preferences. Link to project Link to Docz Website Project Structure . ├── android ├── app.json ├── App.tsx ├── babel.config.js ├── .buckconfig ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── docs ├── doczrc.js ├── .eslintrc.js ├── gatsby-node.js ├── .gitignore ├── .gitlab ├── .gitlab-ci.yml ├── .history ├── images ├── index.d.ts ├── index.js ├── ios ├── jest.config.js ├── LICENSE ├── metro.config.js ├── __mocks__ ├── node_modules ├── package.json ├── prettier.config.js ├── public ├── react-native.config.js ├── README.md ├── src ├── __tests__ ├── tsconfig.json ├── util ├── .watchmanconfig └── yarn.lock Configs Let’s briefly go over the various config files used in this project. ...