import { html } from '../lib/view' import { shell } from './shell' type Props = { error?: string } export function login(props: Props) { return shell({ title: 'Log in', content: content(props), }) } function content({ error }: Props) { return html`
` }