basic shape

This commit is contained in:
2025-08-06 23:29:55 -04:00
parent 3891e8b85b
commit 839d596b55
46 changed files with 220 additions and 5507 deletions

View File

@@ -0,0 +1,14 @@
import { A } from "@solidjs/router";
import { createResource, For } from "solid-js";
import * as Games from "../db/Games";
export default () => {
const [games] = createResource(() => Games.queryAll());
return (
<div style={{ padding: "20px" }}>
<For each={games()}>
{(game) => <A href={`/${game.name}`}>{game.name}</A>}
</For>
</div>
);
};