scrimba
Frontend Career Path
Advanced React
React Router
Building out the Host Van Detail page
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

Building out the Host Van Detail page
AboutCommentsNotes
Building out the Host Van Detail page
Expand for more info
pages
Host
HostVanDetail.jsx
run
preview
console
import React from "react"

export default function HostVanDetail() {
/**
* Challenge (not optional!): build the shared UI portion of the
* Host Van Detail page. This is
*
* Optional portion: also style it to look like the design.
*
* For now, get the data from a request to `/api/host/vans/:id`
* and display the van image, name, price, type
*/
return <h1>Host Van Detail Page</h1>
}
Console
/host/vans/1
-8:54