This is a minimal repo containing example code for my lecture given in the Fall 2022 semester of UT Austin EE461L, Software Engineering & Design.
This code demonstrates a basic user login flow implemented in React. A PDF of my lecture slides is also included in this repo for your convenience.
- You must have Node.js installed.
- Clone this repo with
git clone https://github.com/evmaki/ee461-frontend-in-react.git
cd
intoee461-frontend-in-react
- Run
npm install
to install the project's dependencies (i.e. React and all the JS libraries it depends on). - Once the dependencies are downloaded, run
npm start
to start the development server. - You can access the interface while you're working on it at http://localhost:3000 in your web browser.