Skip to content

Latest commit

 

History

History
31 lines (15 loc) · 1013 Bytes

File metadata and controls

31 lines (15 loc) · 1013 Bytes

ReactAppWebsite

This code is used to implement a website as a React App in which client-side data persists in the browser across refreshes

The purposes of each of the following files are stated below:

index.html - the page template with basic html elements

App.js - contains the main logic and functionality of the app; the login, new, and user pages are made up of bootstrap components

state.js - initializes the state of the app with an array of user information objects

package.json - package file listing dependencies and information

The remaining files were primarily unedited and automatically generated

To run the following commands, Node.js will need to be installed, which can be downloaded from: https://nodejs.org/en/

To install dependencies, type the following at the prompt >:

> npm i

To run the source code, type the following at the prompt >:

> npm start

View the app by opening http://localhost:3000 in a web browser

Code is available upon request