Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danteay/react-scaffold
A useful scafold for react applications with react-router, hooks and sass
https://github.com/danteay/react-scaffold
Last synced: about 1 month ago
JSON representation
A useful scafold for react applications with react-router, hooks and sass
- Host: GitHub
- URL: https://github.com/danteay/react-scaffold
- Owner: danteay
- Created: 2020-01-16T00:34:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-10T20:53:56.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T16:24:09.375Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 841 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React APP Scaffold
```bash
# For development
npm run dev# For production
npm run start
```## Test user login
You can configure a test user on the config file `src/config/config.js`
```javascript
const config = {
// ...
user: {
name: 'Test User',
email: '[email protected]',
pass: '12345678',
},
};
```