.
├── index.ios.js
├── js
│ ├── actions
│ │ ├── ChatServerActionCreators.js
│ │ └── ChatThreadActionCreators.js
│ ├── components
│ │ ├── ChatScreen
│ │ │ ├── index.js
│ │ │ └── style.js
│ │ ├── MessageListItem
│ │ │ ├── index.js
│ │ │ └── style.js
│ │ ├── MessageSection
│ │ │ ├── index.js
│ │ │ └── style.js
│ │ ├── ThreadListItem
│ │ │ ├── index.js
│ │ │ └── style.js
│ │ └── ThreadSection
│ │ ├── index.js
│ │ └── style.js
│ ├── constants
│ │ └── ChatConstants.js
│ ├── dispatcher
│ │ └── ChatAppDispatcher.js
│ ├── models
│ │ ├── Thread.js
│ │ ├── Message.js
│ ├── stores
│ │ ├── ChatExampleData.js
│ │ ├── MessageStore.js
│ │ └── ThreadStore.js
│ └── utils
│ ├── ChatMessageUtils.js
│ └── ChatWebAPIUtils.js
├── node_modules
└── package.json
-
-
Save NarHakobyan/5120e097b8f1012c0758fb7b4be45e9e to your computer and use it in GitHub Desktop.
React Native Directory Structure
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment