Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 1.32 KB

README.md

File metadata and controls

62 lines (45 loc) · 1.32 KB

Mobius Network DApp Store

Contents

Getting started

yarn start

Build

Beta

yarn run build:beta

Production

yarn run build:production

Project structure

├── config            # Configs
├── src               # Sources
│   ├── components    # All UI components
│   │   ├── Feature   # Hierarchy of components grouped by feature
│   │   ├── shared    # Components shared across features
│   ├── state         # State related modules
│   │   ├── Feature   # Reducers, actions, sagas, selectors grouped by feature
│   │   ├── utils     # Redux related utils
│   ├── assets        # Static assets
│   ├── utils         # General purpose utility functions
│   └── styles
└── templates         # Scaffolding templates

Scaffolding

Generate a component:

yarn create:component

Generate a state feature

yarn create:state