scrimba
Frontend Career Path
React basics
AirBnb clone
Project setup: Hero
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

AboutCommentsNotes
Project setup: Hero
Expand for more info
App.js
run
preview
console
import React from "react"
import Navbar from "./components/Navbar"
/*
Challenge: Build the Hero component.
Check the Figma file for the design specifics.
*/

export default function App() {
return (
<div>
<Navbar />
</div>
)
}
Console
/index.html
-5:46