Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedrobslisboa/create-react-sass-app
Simple React App with SASS
https://github.com/pedrobslisboa/create-react-sass-app
Last synced: 26 days ago
JSON representation
Simple React App with SASS
- Host: GitHub
- URL: https://github.com/pedrobslisboa/create-react-sass-app
- Owner: pedrobslisboa
- Created: 2018-09-05T12:51:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-05T13:34:54.000Z (over 6 years ago)
- Last Synced: 2024-10-29T18:24:00.561Z (2 months ago)
- Language: JavaScript
- Size: 211 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
---
# Simple React App with SASS
This project is a simple react app with a friendly sass design, you just need to start to code!## DESIGN
### Before npm start
```
.
├── public
├── src
├── styles
├── scss
...
```
### After npm start
```
.
├── public
├── src
├── styles
├── css
├── scss
...
```## TUTORIAL
WRITING...## USAGE
clone this repo:
```
git clone https://github.com/pedrobslisboa/create-react-sass-app.git YOUR_APP_NAME_HERE
```
change the name of the app at package.json:
```diff
{
- "name": "create-react-sass-app",
+ "name": "YOUR_APP_NAME_HERE",
"version": "0.1.0",
"private": true,```
install dependencies:
```
npm install
```
run application:
```
npm start
```