import { For, Show } from "solid-js"; import { SimplePage, InlineAppBar, Button, CircularProgressIndicator, Field, Row, theme, Txt, useFormula, pushPage, } from "./miwi/src/miwi"; import { SimpleBody } from "./miwi/src/SimpleBody"; import { Game, Player } from "./Model"; import { SwapPlayerGameDialog } from "./SwapPlayerGameDialog"; export function EditGamePage(props: { game: Game }) { return ( } > No Players } > {(player) => ( {`${player.name} (${player.game?.name})`} )} ); }