Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 1.67 KB

file-structure.md

File metadata and controls

21 lines (20 loc) · 1.67 KB

Understanding the File Structure

  • /docs - Github Repo Documentation
  • /firebase - Firebase samples
  • /native-base-theme - React Native's theme (by NativeBase)
  • /public - Web server runs from here
  • /src - Contains the source code for both web & native
    • /constants - Shared variables (across platforms)
    • /containers - 'Smart-components' that connect business logic to presentation Read More →
    • /images - Images shared across platforms
    • /lib - Utils and custom libraries that are shared across platforms
    • /models - Rematch models combining actions, reducers and state. Read More →
    • /native - React Native specific code
      • /components - 'Dumb-components' / presentational. Read More →
      • /constants - Native-specific variables and config
      • /routes- wire up the router with any & all screens Read More →
    • /store- Redux Store - hooks up the stores and provides initial/template states Read More →
    • /web - React-Web specific code
      • /components - 'Dumb-components' / presentational. Read More →
      • /routes- wire up the router with any & all screens Read More →
      • /styles- all the SCSS you could dream of