Code Monkey home page Code Monkey logo

react-hooks-jsx-lab's Introduction

JSX Lab

Learning Goals

  • Use JSX syntax to create DOM elements

Instructions

In this lab, we will be rendering a few children components in our top-most component: App. The components are set up, but we need to update the JSX they return. We'll be writing all our code in the NavBar.js, Home.js, and About.js files. These files are all located in the src/components directory.

Begin with npm install. Examine what is rendering in the browser with npm start.

Our goal will be to make our page look like this:

demo app

Once your app matches the demo image, run learn test or npm test to check your work.

Deliverables

NavBar

The <NavBar> component should return the following JSX elements:

  • a <nav> element
  • inside the nav element, there should be two child elements:
    • an <a> element, with the href attribute set to #home, and the content text set to "Home"
    • an <a> element, with the href attribute set to #about, and the content text set to "About"

Home

Inside the <Home> component, there are a couple of variables defined that will allow you to insert your name and city into the portfolio page.

The <Home> component should return the following JSX elements:

  • a <div> element with an id of "home"
  • inside the div element, there should be one child element:
    • an <h1> element, with the style attribute set to a color of "firebrick", and the content of "Your Name is a Web Developer from Your City"
    • use JSX expression syntax to use the imported name and city variables inside your JSX elements

Hint: consult the React documentation the style property to see how to set the color correctly.

About

The <About> component should return the following JSX elements:

  • a <div> element with an id of "about"
  • inside the div element, there should be three child elements:
    • an <h2> element with the content of "About Me"
    • a <p> element with any content of your choosing
    • an <img> element with the src attribute set to the imported image variable, and the alt attribute set to "I made this"

Resources

react-hooks-jsx-lab's People

Contributors

ihollander avatar alveem avatar lizbur10 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.