Skip to content
This repository has been archived by the owner on Mar 12, 2023. It is now read-only.

Latest commit

 

History

History
44 lines (28 loc) · 712 Bytes

README.md

File metadata and controls

44 lines (28 loc) · 712 Bytes

React Frontend Deployment

Most of the files are generated by react, we only need to modify App.js

Run exsiting Frontend

Setup Server

npm install

Run Server

npm start

Install new-package

npm install --save new-package

Create Frontend from scratch

Prerequisite

Create React App

npx create-react-app frontend     # create basic react app
cd frontend
npm install --save reactstrap     # install essitial modules

References