aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-vite/packages/ui/components/header.ts
blob: 14e0ab965c74978307b1935d686102abcee6dff4 (plain) (blame)
1
2
3
4
5
6
7
export function Header({ title }: { title: string }) {
  return `
    <header id="header">
      <h1>${title}</h1>
    </header>
    `;
}