import {html} from "lit" import {view} from "@e280/sly" import styleCss from "./style.css.js" import themeCss from "../../../theme.css.js" import {Tab} from "./tab.js" import {AccountTab} from "./tabs/account/view.js" export const PraxisMenu = view(use => () => { use.name("menu") use.css(themeCss, styleCss) const activeIndex = use.signal(0) const tabs = use.once(() => [ new Tab("👤", "Account", () => AccountTab()), new Tab("📡", "Multiplayer Lobby", () => html`

Multiplayer Lobby

`), new Tab("⚙️", "Settings", () => html`

Settings

`), new Tab("🎮", "Controls", () => html`

Controls

`), new Tab("🖥️", "Graphics", () => html`

Graphics

`), ]) return html` ` })