import { createSignal } from "solid-js"; export { Counter }; function Counter() { const [count, setCount] = createSignal(0); return ( ); }