scrimba
Frontend Career Path
React basics
AirBnb clone
Project setup: Navbar
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: Navbar
Expand for more info
App.js
run
preview
console
import React from "react"

/*
Challenge: Build the Navbar component.
Check the Figma file for the design specifics.
*/

export default function App() {
return (
<h1>App component</h1>
)
}
Console
/index.html
-5:40