import { For, Show } from "solid-js"; import { InlineAppBar } from "./miwi/src/InlineAppBar"; import { SimpleBody } from "./miwi/src/SimpleBody"; import { SimplePage } from "./miwi/src/SimplePage"; import { Txt } from "./miwi/src/Txt"; import { Game, sayHi } from "./Model"; import { Button } from "./miwi/src/Button"; import { CircularProgressIndicator } from "./miwi/src/CircularProgressIndicator"; import { theme } from "./miwi/src/theme"; import { Box, Card, Field, pushPage, Row, useFormula } from "./miwi/src/miwi"; import { EditGamePage } from "./EditGamePage"; export function MainMenu() { return ( } > No Games } > {(game) => ( pushPage(EditGamePage, { game })}> {/* game.name, (v) => (game.name = v), )} /> */} {game.name} )} ); }