scrimba
React Fundamentals
React Fundamentals: JSX - Solution
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

React Fundamentals: JSX - Solution
AboutCommentsNotes
React Fundamentals: JSX - Solution
Expand for more info
index.js
run
preview
console
import React from "react"
import ReactDOM from "react-dom"

// write JSX to create an element that has the following:
// - an unordered list element with an id of about-me
// - inside the unordered list, 3 list elements with a class of about-me-item that display text about yourself

ReactDOM.render(element, document.getElementById("root"))
Console
/index.html
-1:52