Including it in a component is pretty straightforward: // App.js import { Outlet } from "react-router-dom"; import NavBar from "./components/NavBar"; function App(){ return( <> <header> <NavBar /> </header> <Ou