An open API service indexing awesome lists of open source software.

https://github.com/william-versatile/react-spa

React-spa
https://github.com/william-versatile/react-spa

javascript scss

Last synced: 26 days ago
JSON representation

React-spa

Awesome Lists containing this project

README

          

├── 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