housekeeping

This commit is contained in:
2025-08-26 18:37:27 -04:00
parent 0f015841ff
commit e5f432dc98
14 changed files with 32 additions and 77 deletions

View File

@@ -1,20 +1,19 @@
import type { TWsIn, TWsOut } from "@games/server/src/table";
import { fromPromise, Stream } from "kefir";
import {
Accessor,
createContext,
createEffect,
createResource,
createSignal,
For,
onCleanup,
Show,
} from "solid-js";
import { TWsIn, TWsOut } from "../../../server/src/table";
import api, { fromWebsocket } from "../api";
import { createObservable, createObservableWithInit, cx } from "../fn";
import { me } from "../profile";
import api, { fromWebsocket } from "~/api";
import { createObservable, createObservableWithInit, cx } from "~/fn";
import { me } from "~/profile";
import Game from "./Game";
import Player from "./Player";
import { fromPromise, Stream } from "kefir";
export const TableContext = createContext<{
view: Accessor<any>;