import { html } from "wirejs-dom/v2";
import { AccountMenu as BaseAccountMenu } from "wirejs-components";
type BaseOptions = Omit[0], 'topItems' | 'bottomItems'>;
export function AccountMenu(options: BaseOptions) {
return BaseAccountMenu({
...options,
topItems: [
(state) => state?.state !== 'authenticated'
? html`Sign in to get started!
`
: html`Welcome!
`
],
bottomItems: [
html`Made with wirejs
`
]
});
}