import { createState } from "solid-js"; const Counter = () => { const [state, setState] = createState({ counter: 0 }); return