scrimba
Frontend Career Path
Advanced React
React Router
Creating the Host Layout
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
Creating the Host Layout
Expand for more info
pages
Host
Dashboard.jsx
run
preview
console
import React from "react"
import {Outlet} from "react-router-dom"

export default function Dashboard() {
return (
<>
<h1>Dashboard goes here</h1>
<Outlet />
</>
)
}
Console
/host
-6:27