import type Menu from "./Menu.js"; import ResponsivePopover from "./ResponsivePopover.js"; import List from "./List.js"; import BusyIndicator from "./BusyIndicator.js"; import Button from "./Button.js"; export default function MenuTemplate(this: Menu) { return ( {this.isPhone &&

{this.headerText}

}
{this.items.length ? ( ) : this.loading && ( ) }
{this.isPhone && }
); }