Thank you for purchasing our template. If you have any questions that are beyond the scope of this help file, please feel free to contact with us Contact For Support
npm install
packages. You can do this by running
npm install from the root of your project to install all the necessary dependencies. npm run start
for a dev server. Navigate to http://localhost:3000/ . The app
will automatically reload if you change any of the source files.npm run build
to build the project. The build artifacts will be stored in
the build/ directory. Use the npm run build --prod
flag for a production
build.Trydo/ // root folder + |——template | |——config/ | |——public/ | | |——assets/ | | | |——css/ --css files | | | |——fonts/ --fonts files | | | |——images/ --images files | | | |——js/ --js files | | | |——scss/ --scss files | | |——favicon.ico | | |——index.html | |——src/ | | |——blocks/ --All Elements Include Here You can be use as you like. | | |——components/ --Component Files Folder. | | |__elements/ --All Elements are include here. | | |——home/ -- All Home Page Variation Include Here. | | |——page-demo -- Main Preview and All script include it. | | |——index.js | | |——index.scss | | |——serviceWorker.js | |——package.json -- npm config: dependencies list | |——package-lock.json + + ├─build/ -- folder with builded (ready to use) files │ ├─ assets/ -- assets folder │ ├─ Static/ -- static folder │ │ ├─ css -- styles folder │ │ ├─ js -- scripts │ │ └─ media -- images Folder │ └─ index.html -- index html file +Help: Forther details can be found here official documentation https://reactjs.org/docs/getting-started.html.