/react-spa

React-spa

Primary LanguageSCSS

├── README.md
├── config                                   
│   └── storeConfig.js
├── dist                                   
│   └── store
│       ├── index.html
│       └── js
├── package.js                             
├── package.json               
├── readModuleConfig.js                   
├── src
│   ├── common                              
│   │   ├── common.js                       
│   │   ├── common.scss                     
│   │   ├── reset.scss                     
│   │   └── size.scss                       
│   └── store                               
│       ├── actions                         
│       │   └── home
│       │       ├── aboutAction.jsx
│       │       └── indexAction.jsx
│       ├── components                      
│       │   ├── Alert.jsx
│       │   ├── Alert.scss
│       │   ├── Dialog.jsx
│       │   ├── Dialog.scss
│       │   ├── Loading.jsx
│       │   ├── Loading.scss
│       │   ├── Mask.jsx
│       │   ├── Mask.scss
│       │   └── size.scss
│       ├── const                             
│       │   └── home
│       │       ├── IndexTypes.jsx
│       │       └── aboutTypes.jsx
│       ├── css                                #css
│       │   └── home
│       │       ├── about.scss
│       │       └── app.scss
│       ├── images                          
│       │   ├── README.md
│       │   └── test.jpeg
│       ├── reducers                           #reducer
│       │   └── home
│       │       ├── about.jsx
│       │       └── index.jsx
│       ├── store                              #store
│       │   └── home
│       │       ├── aboutStore.jsx
│       │       └── indexStore.jsx
│       └── view                             
│           ├── home
│           │   ├── about.jsx
│           │   └── index.jsx
│           └── router.jsx                    
├── template                                  
│   ├── server.template.html
│   └── test.template.html
├── util.js                                    
├── webpack.config.js                          
├── webpack.production.config.js               
└── webpack.server.config.js