import { html } from 'lit'; import { Button } from './Button'; import './header.css'; export const Header = ({ user, onLogin, onLogout, onCreateAccount }) => 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', })}`} `;