import { Component, For, JSX } from "solid-js"; import Card from "./Card"; import { Pile } from "../types/cards"; import { type ComponentProps } from "solid-js"; import { Clickable, Stylable } from "./toolbox"; export default ((props) => { return (
{(card, i) => ( )}
); }) satisfies Component< { pile: Pile; } & Stylable & Clickable >;