import { Outlet } from 'react-router-dom' import { Header } from './Header' // Top-level page wrapper used as the root layout in App.tsx. Renders the // Header above the current route's page component via . export function Shell() { return (
) }