You must log into Brightspace for the videos below to show!
Update Spring 2025: create-react-app has been deprecated. We are switching to Vite. I'm not updating the video because there's really no meaningful change. Vite instructions are provided below.
Following along with the video example, start a new React project.
prompt> git clone <repo URL> prompt> cd <repo name> prompt> git config commit.template .gitmessage
.gitignore and a html mockup)use Vite to create your react project inside the repo by running this command and answering the question prompts:
repo> npm create vite@latest
React as the frameworkJavaScript as the variantIn response to the last vite question, you can "Install with npm and start now", or say no and do so manually:
repo> cd (whatever you named the project) repo/project> npm i repo/project> npm run dev
For your future reference, here is an article series updated annually about the current options for managing React apps.
Using the video example as reference, practice starting an App from a mockup using JSX
          replace the default App function in src/App.js with the below code:
        
function App() {
  const friends = [
    {id: 1, name: "Bobbo Bobberson", description: "Fun guy", comment: "Takes it all in stride.", ditched: false},
    {id: 2, name: "Bobbina Schendjornnszan", description: "Deceptively strong", comment: "Great at lifting and toting.", ditched: false},
    {id: 3, name: "Mano Mano", description: "Adversarial", comment: "You don't want this.", ditched: true},
    {id: 4, name: "The Flea", description: "Unironically tiny", comment: "Always a circus around her.", ditched: false}
  ];
          
  return (
    <>
      <p>Update Me</p>
    </>
  );        
}
      
          Write JSX code in the return to use the friends data and make the
          page look like this (with the four friends you defined instead):
        

mockups/mockup-jsx-practice.html
            body into your return function<head> of your
                index.html file to include bootstrapmap instead of
          a for loop.Ditch button for friends
        where ditched is true (use the ternary if expression, not an if control statement)
      When it's done, make a copy of src/App.js named src/App-practice.js to
      preserve that work for grading.