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
- Host: GitHub
- URL: https://github.com/william-versatile/react-spa
- Owner: William-versatile
- Created: 2024-03-08T02:04:00.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-08T02:07:38.000Z (over 2 years ago)
- Last Synced: 2025-04-05T07:28:29.557Z (about 1 year ago)
- Topics: javascript, scss
- Language: SCSS
- Homepage:
- Size: 442 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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