import { For, Match, Switch, type Component } from "solid-js"; import { useCountContext } from "./Config"; export const Nested: Component = () => { const [{ machines, loading }, { getMachines }] = useCountContext(); return (

Loading... No machines found {(machine, i) => (
  • {i() + 1}: {machine}
  • )}
    ); };