scrimba
Frontend Career Path
React basics
React site
Navbar & Styling
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
Navbar & Styling
Expand for more info
components
Navbar.js
run
preview
console
/**
Challenge: Complete the Navbar to match the design

Hint: use the Figma file for the most accurate peek at the design
(colors, sizes, fonts, etc.)
*/

import React from "react"

export default function Navbar() {
return <h1>Navbar component</h1>
}
Console
/index.html
-7:16