Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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',
},
};
```