You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
2 years ago
|
# CoreUI React version
|
||
|
|
||
|
## Intro
|
||
|
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app)
|
||
|
|
||
|
It uses Sass (with .scss). The styles are loaded at the template level with `node-sass-chokidar` css preprocessor
|
||
|
|
||
|
Dependencies are handled by **npm**.
|
||
|
|
||
|
## Directories
|
||
|
```
|
||
|
CoreUI-React#v2.0.0
|
||
|
├── public/ (static files)
|
||
|
│ ├── assets/ (assets)
|
||
|
│ ├── favicon.ico
|
||
|
│ └── index.html (html temlpate)
|
||
|
│
|
||
|
├── src/ (project root)
|
||
|
│ ├── containers/ (container source)
|
||
|
│ ├── scss/ (scss/css source)
|
||
|
│ ├── views/ (views source)
|
||
|
│ ├── App.js
|
||
|
│ ├── App.test.js
|
||
|
│ ├── index.js
|
||
|
│ ├── _nav.js (sidebar config)
|
||
|
│ └── routes.js (routes config)
|
||
|
│
|
||
|
└── package.json
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
`npm i` - to install dependencies
|
||
|
|
||
|
## Sctipts
|
||
|
`npm start` for developing (it runs webpack-dev-server)
|
||
|
`npm run build` to run a dev build
|
||
|
|
||
|
## See also
|
||
|
[Create-React-App](CRA.md)
|
||
|
[Changelog](./CHANGELOG.md)
|
||
|
[Readme](./README.md)
|