import { A } from "@solidjs/router"; import Game from "../components/Game"; import { createResource, For } from "solid-js"; import { db } from "../db"; export default () => { const [games] = createResource(() => db().then((data) => data.games)); return (
{([gameId, game]) => {game.name}}
); };