1 2 3 4 5 6 7
export function Header({ title }: { title: string }) { return ` <header id="header"> <h1>${title}</h1> </header> `; }