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: 8 days 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 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-10T20:53:56.000Z (almost 4 years ago)
- Last Synced: 2025-01-28T22:31:27.350Z (11 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: 'test@test.com',
pass: '12345678',
},
};
```