Skip to content

Latest commit

 

History

History
59 lines (59 loc) · 1.09 KB

File metadata and controls

59 lines (59 loc) · 1.09 KB

项目结构

  • react-native-boilerplate/
  • android/
  • ios/
  • ...
  • src/
    • components/
      • componentName/
        • stories/
          • index.stories.js
        • tests/
          • index.test.js
        • index.js
        • styles.js
    • containers/
      • containerName/
        • tests/
          • index.test.js
          • ...
        • actions.js
        • constants.js
        • index.js
        • reducer.js
        • sagas.js
        • selectors.js
        • styles.js
    • forms/
      • formFields/
        • formFieldName/
          • stories/
            • index.stories.js
          • tests/
            • index.test.js
          • index.js
        • constants.js
        • index.js
        • styles.js
      • formName/
        • stories/
          • index.stories.js
        • tests/
          • index.test.js
        • index.js
        • styles.js
    • translations/
      • en.js
      • zh.js
    • store/
    • App.js
    • AppRoutes.js
    • translateRoute.js
    • ...
  • storybook
    • ContentView/
    • FooterView/
    • HeaderView/
    • index.js
    • ...