Please refer Faq's page in documentation itself for queries like customization like color ,rtl ,dark style..etc.
sash/
├── node_modules
├── public/
| ├── favicon.ico
| ├── index.html
| ├── manifest.json
| └── roobts.txt
└── src/
├── assets
| ├── colors
| ├── css
| ├── iconfonts
| ├── images
| ├── plugins
| ├── scss
| └── switcher
├── components
├── Data
├── Firebase
├── Layouts
| ├── Backtotop
| ├── Footer
| ├── Header
| ├── Loader
| ├── PageHeader
| ├── RightSide
| ├── Sidebar
| └── Switcher
├── Redux
| ├── action.jsx
| ├── reducer.jsx
| └── store.jsx
├── index.jsx
├── index.scss
├── logo.svg
├── reportWebVitals.js
├── setupTests.js
├── gulpfile.js
├── package.json
├── package-lock.json
└── README.md
| # | File | Purpose |
|---|---|---|
| node_modules | Node.js creates this folder and puts all third party modules listed in package.json inside of it. | |
| favicon.ico | Every site wants to look good on the bookmark bar. Get started with your very own React icon. | |
| index.html | The main page that is served when someone visits your site. Most of
the time you'll never need to edit it.
The CLI automatically adds all tsx and css files when building your app
so you never need to add any
<script> or <link> tags here
manually.
|
|
| manifest.json | Manifest is provide information about an application in a JSON text file the manifest is to install web applications to your device, provide user with quick access and a good experience | |
| roobts.txt | Different browsers have different levels of support of the web standards. Polyfills help normalize those differences. You should be pretty safe with core-js and zone.js, but be sure to check out the Browser Support guide for more information. | |
| app..{react, scss, js} | Defines the App Component along with an React template, CSS/SCSS stylesheet, and a unit test. It is the root component of what will become a tree of nested components as the application evolves. | |
| index.jsx | Routing basically means navigating between pages. You have seen many sites with links that direct you to a new page. This can be achieved using routing. | |
| index.scss | Global Sss/Scss code. | |
| reportWebVitals.js | Create React App includes a built-in tool for measuring the real life performance of your app | |
| app.jsx | Defines AppModule, the root module that tells React how to assemble the application. Right now it declares only the AppComponent. Soon there will be more components to declare. | |
| assets | A folder where you can put images, css, json data anything else to be copied wholesale when you build your application. | |
| styles.scss | Your global styles go here. Most of the time you'll want to have local styles in your components for easier maintenance, but styles that affect all of your app need to be in a central place. | |
| .gitignore | Git configuration to make sure autogenerated files are not commited to source control. | |
| package-lock.json | The goal of package-lock. json file is to keep track of the exact version of every package that is installed so that a product is 100% reproducible in the same way even if packages are updated by their maintainers. This solves a very specific problem that package. | |
| package.json | npm configuration listing the third party packages your project uses. You can also add your own custom scripts here. | |
| README.md | Basic documentation for your project, pre-filled with CLI command information. Make sure to enhance it with project documentation so that anyone checking out the repo can build your app! |