import { html } from 'lit-html'; import { Button } from './Button'; import './header.css'; type User = { name: string; }; export interface HeaderProps { user?: User; onLogin: () => void; onLogout: () => void; onCreateAccount: () => void; } export const Header = ({ user, onLogin, onLogout, onCreateAccount }: HeaderProps) => html`

Acme

${user ? Button({ size: 'small', onClick: onLogout, label: 'Log out' }) : html`${Button({ size: 'small', onClick: onLogin, label: 'Log in', })} ${Button({ primary: true, size: 'small', onClick: onCreateAccount, label: 'Sign up', })}`}
`;