scrimba
Learn React Router
Nested Routes
Outlet Context
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
Outlet Context
Expand for more info
pages
Host
HostVanDetail.jsx
run
preview
console
import React from "react"
import { useParams, Link, NavLink, Outlet } from "react-router-dom"

export default function HostVanDetail() {
const { id } = useParams()
const [currentVan, setCurrentVan] = React.useState(null)

const activeStyles = {
fontWeight: "bold",
textDecoration: "underline",
color: "#161616"
}

React.useEffect(() => {
fetch(`/api/host/vans/${id}`)
.then(res => res.json())
.then(data => setCurrentVan(data.vans))
}, [])

if (!currentVan) {
return <h1>Loading...</h1>
}
return (
<section>
<Link
to=".."
relative="path"
className="back-button"
>&larr; <span>Back to all vans</span></Link>

<div className="host-van-detail-layout-container">
<div className="host-van-detail">
<img src={currentVan.imageUrl} />
<div className="host-van-detail-info-text">
<i
className={`van-type van-type-${currentVan.type}`}
>
{currentVan.type}
</i>
<h3>{currentVan.name}</h3>
<h4>${currentVan.price}/day</h4>
</div>
</div>

<nav className="host-van-detail-nav">
<NavLink
to="."
end
style={({ isActive }) => isActive ? activeStyles : null}
>
Details
</NavLink>
<NavLink
to="pricing"
style={({ isActive }) => isActive ? activeStyles : null}
>
Pricing
</NavLink>
<NavLink
to="photos"
style={({ isActive }) => isActive ? activeStyles : null}
>
Photos
</NavLink>
</nav>
<Outlet />
</div>
</section>
)
}
Console
/host/vans/1
-5:30