'use client' import Link from 'next/link' import { Icon } from './Icon' import { Search } from './Search' import { ThemeSwitcher } from './ThemeSwitcher' export function Header({ sectionId }: { sectionId?: string }) { return (
) } export function SectionLinks({ sectionId }: { sectionId?: string | null }) { return ( <> Learn Reference Examples ) }